MsgBox: First line in prompt make bold

K

Kan D.

I forgot how to make bold the first line (or sentence) in a 2 sentence
msgbox prompt.

Please help

Kan
 
A

Allen Browne

Microsoft broke that in Access 2000.

You can still fudge it by calling the MsgBox() through the expression
service like this:
Eval("MsgBox(""This is the bold line@Line 2@Line 3"",1)")
 
K

Kan D.

thanks

Allen Browne said:
Microsoft broke that in Access 2000.

You can still fudge it by calling the MsgBox() through the expression
service like this:
Eval("MsgBox(""This is the bold line@Line 2@Line 3"",1)")
 
Top