Aug 28, 2001 #1 logo Programmer Aug 22, 2001 56 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 Aug 13, 2001 30 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 Jun 20, 2001 678 US vbNewLine is another option for you Upvote 0 Downvote