Page 1 of 1

[Implemented] Line continuation character and input box

Posted: Sat Jan 25, 2003 4:14 am
by BackupUser
Restored from previous forum. Originally posted by wayne1.

Fred,
Whatever happened to the line continuation character that was discussed a year ago and it was said you would try to implement it.:)
Visual Basic is as follows:
s = "This is an example of the" + _
" line continution character in Visual Basic"
MsgBox s

also could you improve the inputbox to be as the latest example in tricks and tips (modal,cancel button,etc.):)

Posted: Sun Jan 26, 2003 8:32 pm
by BackupUser
Restored from previous forum. Originally posted by geoff.

PB's multi-line input box is fine but a PureBasic one would be more convenient.

Another idea is a multiple button box that returns the button number pressed.
For example:

ButtonText$="Yes|No|Maybe|Don't Know|";texts for 4 buttons

ChosenButton=ChoiceRequester(Title$,Message$,ButtonText$)

Anyone else want this one?