campfat
10-06-2001, 08:54 PM
I have a text box which is multilined (text1) and I have another box which is not (text2) when the user fills in text2 I add the input to text1 using the follwoing code.
If Text2 = "" Then
Else
Text1 = Text1 + " -" + Text2
Text2 = ""
End If
and it works fine but I want it to add each input on a seperate line.Right now every input is put on the same line how do I fix this?
If Text2 = "" Then
Else
Text1 = Text1 + " -" + Text2
Text2 = ""
End If
and it works fine but I want it to add each input on a seperate line.Right now every input is put on the same line how do I fix this?