You need the MsgBox function. Details on how to use it are in the VBA help,
complete with code examples. To reach the appropriate help page, simply type
MsgBox in the VBA editing window and then press the F1 key.

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
> Hello Dave,
>
[quoted text clipped - 25 lines]
>> >
>> > Thank you, your assistance would be much appreciated.
Krakmup - 29 Sep 2005 20:13 GMT
G'Day
Try this:
Sub Auto_Open()
Msg = "Hello " & username
MsgBox Msg
End Sub
Use Chr(13) to insert a paragraph mark, ie
Msg = "Hello " & username & Chr(13) & "Did you remember that you are buying
lunch today?"
Krakmup
> You need the MsgBox function. Details on how to use it are in the VBA help,
> complete with code examples. To reach the appropriate help page, simply type
[quoted text clipped - 29 lines]
> >> >
> >> > Thank you, your assistance would be much appreciated.