MsgBox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a simple way to put spaces in a MsgBox? I'm pressing TAB to make the sentence move onto the next line

And is there a simple way to bold a sentence like how Access does it

Thanks
Roger
 
Roger,

If you don't like the answer I give you, say so in the original thread, and
if you think I've misunderstood your question, say so. Don't just start a
new thread.

Refer to your original question for the answers you seek.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Roger said:
Is there a simple way to put spaces in a MsgBox? I'm pressing TAB to make
the sentence move onto the next line.
 
msgbox "Line 1" & vbCrLf & "line 2"

vbCrLf is VB constant. Use vbCrLf & vbCrLf to make 1 space line.

For bold, Sorry I don't know.

HTH

Roger said:
Is there a simple way to put spaces in a MsgBox? I'm pressing TAB to make
the sentence move onto the next line.
 
Back
Top