marale Posted December 15, 2003 Posted December 15, 2003 What is replace the option \n for the msgbox in the V3
Administrators Jon Posted December 15, 2003 Administrators Posted December 15, 2003 msgbox(0, "", "This is line1" & @lf & "This is line2") Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
w_sp8er Posted December 17, 2003 Posted December 17, 2003 does msgbox(0, "", "This is line1" & @CR & "This is line2") have the same effect?
scriptkitty Posted December 17, 2003 Posted December 17, 2003 sure does, as well as: msgbox(0, "", "This is line1" & chr(10) & "This is line2") msgbox(0, "", "This is line1" & chr(13) & "This is line2") Surprisingly, so does: msgbox(0, "", "This is line1" & chr(13) & chr(10) & "This is line2") msgbox(0, "", "This is line1" & chr(10) & chr(13) & "This is line2") msgbox(0, "", "This is line1" & chr(13) & @lf & "This is line2") msgbox(0, "", "This is line1" & @lf & chr(13) & "This is line2") msgbox(0, "", "This is line1" & @cr & @lf & "This is line2") msgbox(0, "", "This is line1" & chr(10) & @cr & "This is line2") Want more? More than one way to skin a cat. AutoIt3, the MACGYVER Pocket Knife for computers.
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