G
Guest
I hope this is the appropriate group for my question. If not please let me
know.
I have the following statements to display a message to the user:
User_message_2 = "1) All Tables will be transferred"
User_message_2a = " B_AFFILIATION B_AREAOFINTEREST"
User_message_2b = " B_LANGUAGE B_PAYCODES"
User_message_2c = " B_PLANTYPE B_SPECIALTY"
Confirm_Message = User_message_2 & vbCrLf & _
User_message_2a & vbCrLf & _
User_message_2b & vbCrLf & _
User_message_2c & vbCrLf
MsgBox(Confirm_Message, 1 + 16, "WARNING")
The lines appear to be spaced the way I want them to look on screen, but
when the code runs, the "columns" are not aligned.
I have played with using tabs or space characters to build these lines but
nothing seems to allow the alignment I want. The only thing that works is to
"misalign" the code lines to that the screen is aligned.
Has anyone seen this before and how did you get around the problem?
Thanks.
know.
I have the following statements to display a message to the user:
User_message_2 = "1) All Tables will be transferred"
User_message_2a = " B_AFFILIATION B_AREAOFINTEREST"
User_message_2b = " B_LANGUAGE B_PAYCODES"
User_message_2c = " B_PLANTYPE B_SPECIALTY"
Confirm_Message = User_message_2 & vbCrLf & _
User_message_2a & vbCrLf & _
User_message_2b & vbCrLf & _
User_message_2c & vbCrLf
MsgBox(Confirm_Message, 1 + 16, "WARNING")
The lines appear to be spaced the way I want them to look on screen, but
when the code runs, the "columns" are not aligned.
I have played with using tabs or space characters to build these lines but
nothing seems to allow the alignment I want. The only thing that works is to
"misalign" the code lines to that the screen is aligned.
Has anyone seen this before and how did you get around the problem?
Thanks.