I`m wondering how to get a multiline ShowMessage()
using ShowMessage "textline1 /n textline 2 /n textline3 /n etc.."
ShowMessage doesn`t acknowledge then /n.
How do you get multiline showmessage()?
How do you get multiline showmessage()?
I don`t know if there are other solutions but this works:
ShowMessage "line1"+Chr$(10)+"line2"+Chr$(10)+"line3"
(Chr$(10) is the value for
newline)
ShowMessage "line1"+Chr$(10)+"line2"+Chr$(10)+"line3"
(Chr$(10) is the value for
newline)
How do you get multiline showmessage()?
I got it working thanks, its in my SillyCypher program over on the files page.
I got version 2 working the exe is in the attachment.
I got version 2 working the exe is in the attachment.
How do you get multiline showmessage()?
:)
if you want you can add a button copy to clipboard with something like this (re is RichEdit object)
re.SelStart=0
re.SelLength=len(re.Text)
re.CopyToClipboard
re.SelLength=0
if you want you can add a button copy to clipboard with something like this (re is RichEdit object)
re.SelStart=0
re.SelLength=len(re.Text)
re.CopyToClipboard
re.SelLength=0