marale 0 Posted December 15, 2003 What is replace the option \n for the msgbox in the V3 Share this post Link to post Share on other sites
Jon 1,012 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/ Share this post Link to post Share on other sites
w_sp8er 0 Posted December 17, 2003 does msgbox(0, "", "This is line1" & @CR & "This is line2") have the same effect? Share this post Link to post Share on other sites
scriptkitty 1 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. Share this post Link to post Share on other sites