Last updated: 21 Dec 1999
It is possible to create a messagebox that contains two or more lines.
If you create the messagebox in a macro, just hit CTRL-M at the end of each line.
If you create the messagebox in LotusScript, then put a Chr$(13) in the string at the end of every line. Eg:
Messagebox "First line of text" & Chr$(13) & "Second line of text"