Easy Multi-Line Messages
When coding error/info messages in LotusScript, do you hate having to split the
string into several lines and then concatenate them using a CHR(10)?
Using a pipe character (|) to delimit the multi-line string, you can enter your
multi-line text directly into the Script programming pane:
Sub Click()
dim mystring as string
mystring=|Hi there
Welcome to Notes411
Enjoy your stay|
messagebox(mystring)
End Sub