I saw some code the other day in this forum where the programmer printed the second line of a MESSAGEBOX() by using just "<string>"+chr(13)+<"string>".
I have always seen this done by using "<string>"+chr(13)+chr(10+"<string>"), instead of chr(13) alone. So I had to try it for myself, and it worked. Are there any places(situations) whereby the use of chr(13)+chr(10) would be required?
P.S. For you purists - I know that a either literal string or a variable could be used.
I have always seen this done by using "<string>"+chr(13)+chr(10+"<string>"), instead of chr(13) alone. So I had to try it for myself, and it worked. Are there any places(situations) whereby the use of chr(13)+chr(10) would be required?
P.S. For you purists - I know that a either literal string or a variable could be used.