Rolstoelfreak Posted October 9, 2005 Share Posted October 9, 2005 Hey all, Just a quick question. Is there a command to start a new line in a messagebox? So for example Msgbox (0, "title", "text on first line" & \n & " text on second line") Is this possible? realtebo 1 Link to comment Share on other sites More sharing options...
Confuzzled Posted October 9, 2005 Share Posted October 9, 2005 (edited) Hey all,Just a quick question. Is there a command to start a new line in a messagebox?So for example Msgbox (0, "title", "text on first line" & \n & " text on second line")Is this possible? Cutted and posted directly from the help file: @CR Carriage return, Chr(13); sometimes used for line breaks.@LF Line feed, Chr(10); typically used for line breaks.@CRLF = @CR & @LF ;occasionally used for line breaks.So your code would be Msgbox (0, "title", "text on first line" & @LF & " text on second line") Edited October 9, 2005 by Confuzzled realtebo, Batch381 and oskrki 3 Link to comment Share on other sites More sharing options...
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