How would i make vb send text one line at a time?
So if Text1 was something like
HI
Text1
YAY
It would send HI then Text1 then YAY
Printable View
How would i make vb send text one line at a time?
So if Text1 was something like
HI
Text1
YAY
It would send HI then Text1 then YAY
VB Code:
Dim textsplit () as string textsplit = split (text1.text,vbCrLf) for i = 1 to ubound(textsplit) msgbox (textsplit(i)) next
that what you want?
yeah thanks