Hi,
How can i read 3 strings behind a word.
Example: !Connect Serv 1204 Pass
Then how can i split it so i can read
the 3 words behind !Connect and i can put
them in a string :lol:
serv = Serv
Port = 1204
Pass = Pass
Srry for my bad english, im from holland :cool:
Code i have:
VB Code:
If Left(Message, 7) = "!Connect" Then Dim String As String a = Message b = " " If Left(a, 7) = "!Connect" Then c = Split(a, b) String = c(1) sendmsg string End If End If
In the code above, i can only get 1 string behind the word :(
thx ! :wave:
