I have a simple request - how can i concatenate several strings together in a text area and make sure that each string is inserted on a new line?
"TextArea" = _
& "FullName: " & txtFirstName.Te xt & " " & txtLastName.Tex t _
& " Course: " & strCourse _
& " Expiry: " & ddlExpireDay.Se lectedValue & " " ddlExpMon.Selec tedValue
& " Heard About: " & ddlHeardAbout.S electedValue
"TextArea" = _
& "FullName: " & txtFirstName.Te xt & " " & txtLastName.Tex t _
& " Course: " & strCourse _
& " Expiry: " & ddlExpireDay.Se lectedValue & " " ddlExpMon.Selec tedValue
& " Heard About: " & ddlHeardAbout.S electedValue
Comment