MsgBox: First line in prompt make bold

  • Thread starter Thread starter Kan D.
  • Start date Start date
K

Kan D.

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

Please help

Kan
 
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)")
 
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)")
 
Back
Top