Aug 28, 2001 #1 logo Programmer Joined Aug 22, 2001 Messages 56 Location US What is the escape character for a carriage return in VB 6.0. I am trying to post information from several textboxes into an email message box and need to seperate the data with carriage returns. Why this is taking so much time to figure out . . . I don't know.
What is the escape character for a carriage return in VB 6.0. I am trying to post information from several textboxes into an email message box and need to seperate the data with carriage returns. Why this is taking so much time to figure out . . . I don't know.
Aug 28, 2001 1 #2 Tuan3249 Programmer Joined Aug 13, 2001 Messages 30 Location US carriage return is vbcrlf You can do strMSG = text1.text & vbcrlf & text2.text... hope that helps Upvote 0 Downvote
Aug 28, 2001 1 #3 woyler Programmer Joined Jun 20, 2001 Messages 678 Location US vbNewLine is another option for you Upvote 0 Downvote
Aug 28, 2001 Thread starter #4 logo Programmer Joined Aug 22, 2001 Messages 56 Location US thanks! Upvote 0 Downvote