I'm sure this is a very simple question, but I have NO experience with message boxes.
I am displaying a message box, and would like to put a space between two lines of the message. I am told to display either (chr (13)) or (chr(10)), but I am not sure how I am suppose to display this.
Here is my code
Thanks, in advance
I am displaying a message box, and would like to put a space between two lines of the message. I am told to display either (chr (13)) or (chr(10)), but I am not sure how I am suppose to display this.
Here is my code
Code:
Dim strMsg1 As String, seqBegin As Integer, strMsg2 As String
strMsg1 = "Do you want the sequence number to begin at 1?"(chr(13))"(Click 'No' if you want to begin the sequence number at a different number)"
seqBegin = MsgBox(strMsg1, vbYesNo)
Thanks, in advance