Guest bcinst2005 Posted June 14, 2005 Posted June 14, 2005 i want a message box to pop up and display multiple lines... MsgBox(48, "Passwords", "Text Lines 1 Text Line 2") I want the "text line 1" and "text line 2" to be on their own lines like Text Line 1 Text Line 2 Is it possible with MsgBox? or do i have to use something else? Thanks!
Valuater Posted June 14, 2005 Posted June 14, 2005 here ya go... $T1 = Test Line 1 $T2 = Test Line 2 MsgBox(48, "Passwords", "Text Lines 1 = " & $T1 & @CRLF & "Text Line 2 = " & $T2) hope it works... done on the fly 8)
layer Posted June 14, 2005 Posted June 14, 2005 Easier MsgBox(48, "Passwords", "Text lines 1" & @CRLF & "Text lines 2") FootbaG
herewasplato Posted June 14, 2005 Posted June 14, 2005 MsgBox(0,"AutoIt",_ "If the text lines that you want to write are long," & @CR &_ "...you might consider using the line continuation feature." & @CR &_ "" & @CR &_ "This makes things look better in your editor." & @CR &_ "" & @CR &_ "You can skip lines as shown above or..." & @CR &_ "...use two or more carriage returns at the end of a line" & @CR & @CR & @CR &_ " The End.") [size="1"][font="Arial"].[u].[/u][/font][/size]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now