Page 1 of 1
display many elements in the message box
Posted: Tue Dec 01, 2015 4:55 am
by problème
Hello,
I want to know how to display many elements in the message box.
Code: Select all
command Disp
put "line1"
put "line2"
end Disp
In the message box, i have only "line2" that is displayed
Re: display many elements in the message box
Posted: Tue Dec 01, 2015 5:08 am
by quailcreek
There is a multi-line button on the message box. The second one from the left.
Re: display many elements in the message box
Posted: Tue Dec 01, 2015 5:20 am
by bn
Hi Problème,
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.
try
Code: Select all
command Disp
put "line1"
put cr & "line2" after msg
end Disp
Kind regards
Bernd
Re: display many elements in the message box
Posted: Tue Dec 01, 2015 5:49 am
by problème
thanks for the help