Hi i want to add all the data from a string after these two characters
/#
VB Code:
If Mid(chatdata, 1, 2) = "/#" Then 'want code in here to assign to the rest of the var 'such as lst1.additem restofstring End If
Printable View
Hi i want to add all the data from a string after these two characters
/#
VB Code:
If Mid(chatdata, 1, 2) = "/#" Then 'want code in here to assign to the rest of the var 'such as lst1.additem restofstring End If
lst1.additem mid$(chatdata, 3, len(chatdata))