|
-
Nov 27th, 2005, 05:10 PM
#1
Thread Starter
Member
Message Box Formate
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.
-
Nov 27th, 2005, 05:42 PM
#2
Addicted Member
Re: Message Box Formate
Use the vbCrLf (visual basic carriage return line feed) command...like so:
VB Code:
MsgBox ("Total Count = " & Count1 & vbCrLf & " Total Coy = " & ECcount)
HTH
-
Nov 27th, 2005, 06:08 PM
#3
Thread Starter
Member
Re: Message Box Formate
-
Nov 27th, 2005, 06:14 PM
#4
Addicted Member
Re: Message Box Formate
Anytime
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|