I have a TCP Server sending the contents of four text boxes to a TCP Client. How do I seperate the arriving data so that they can be placed in four corresponding text boxes??
Printable View
I have a TCP Server sending the contents of four text boxes to a TCP Client. How do I seperate the arriving data so that they can be placed in four corresponding text boxes??
You can make a string like
dim strsplit() as string
dim string as string
string = "hello;world"
then you can seperate the string with the split keyword
strsplit = Split(string, ";", -1, vbTextCompare)
text1.text = strsplit(1)
text2.text = strsplit(2)