I'm using the following code to create a message box with two things in it. HOw do i get them to appear one above the other and not side by side.
VB Code:
MsgBox ("Total Count = " & Count1 & " Total Coy = " & ECcount)
Thank you in advance.
Printable View
I'm using the following code to create a message box with two things in it. HOw do i get them to appear one above the other and not side by side.
VB Code:
MsgBox ("Total Count = " & Count1 & " Total Coy = " & ECcount)
Thank you in advance.
Use the vbCrLf (visual basic carriage return line feed) command...like so:
HTH :afrog:VB Code:
MsgBox ("Total Count = " & Count1 & vbCrLf & " Total Coy = " & ECcount)
Thank you ver much..
Anytime :)