Results 1 to 4 of 4

Thread: Here an easy question

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2000
    Posts
    2

    Question

    I've never worked in VB before, C++ is my thing! So i know this is an easy question, and a dumb one but who do i format my output so it will skip to the next line rather then being on the same line. Trust me i've tried to find the answer, i've tried what i do in C++ but can't get it! Please help me i'm an idiot!!!1

    Shaun

  2. #2
    Fanatic Member
    Join Date
    Mar 2000
    Location
    That posh bit of England known as Buckinghamshire
    Posts
    658
    if you are talking about displaying strings in textboxes or labels etc, you can concatinate a "vbCrLf" to force a new line.

    Code:
    Label1.caption = "Hello" & vbCrLf & "World"
    Iain, thats with an i by the way!

  3. #3
    Addicted Member
    Join Date
    May 2000
    Posts
    188
    Are you trying to place part of a string on the next line? Example being the message in a MsgBox? then you can use vbCrLf

  4. #4

    Thread Starter
    New Member
    Join Date
    Jun 2000
    Posts
    2

    Talking

    Thank you thats 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