I want to know how to display many elements in the message box.
Code: Select all
command Disp
put "line1"
put "line2"
end Disp
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
command Disp
put "line1"
put "line2"
end Disp
what this does is to put line1 into the message box and then immediately line2, so you don't see line1.command Disp
put "line1"
put "line2"
end Disp
Code: Select all
command Disp
put "line1"
put cr & "line2" after msg
end Disp