Question asked by visitor sp
How can we go to second line in a MsgBox and print a statement, after printing the 1st line
Question asked by visitor sp
How can we go to second line in a MsgBox and print a statement, after printing the 1st line
This question is very confusing.
Following is the answer for what I understand.
MSGBOX("First Line...." & chr(13) & "Second Line....", "Title...";
Hope it works.
Lack of WILL POWER has caused more failure than
lack of INTELLIGENCE or ABILITY.
-sutnarcha-
Hi,
Rather using chr(13), it is always recommended to use vbcrlf. i.e.,
MSGBOX("First Line...." & vbcrlf & "Second Line....", "Title...";
Regards,
Ganesh SM
You can do either of these 3....
Msgbox "I am " & VBcrlf & "User"
Msgbox "I am " & chr(13) & "User"
Msgbox "I am " & chr(10) & "User"