Results 1 to 4 of 4

Thread: Message Box Formate

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2005
    Location
    Australia
    Posts
    46

    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:
    1. MsgBox ("Total Count = " & Count1 & " Total Coy = " & ECcount)

    Thank you in advance.

  2. #2
    Addicted Member malik641's Avatar
    Join Date
    Sep 2005
    Location
    South Florida :-)
    Posts
    221

    Re: Message Box Formate

    Use the vbCrLf (visual basic carriage return line feed) command...like so:

    VB Code:
    1. MsgBox ("Total Count = " & Count1 & vbCrLf & " Total Coy = " & ECcount)
    HTH




    If you find any of my posts of good help, please rate it

  3. #3

    Thread Starter
    Member
    Join Date
    Mar 2005
    Location
    Australia
    Posts
    46

    Resolved Re: Message Box Formate

    Thank you ver much..

  4. #4
    Addicted Member malik641's Avatar
    Join Date
    Sep 2005
    Location
    South Florida :-)
    Posts
    221

    Re: Message Box Formate

    Anytime




    If you find any of my posts of good help, please rate it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width