hi, it is possible to made like with this code?
lets say...
i have a Text1.Text and set as multiline = you will right your own message
then... if the Text1.Text received "HI" i want the msg Box appear Found "HI" then go typing... if Text1.Text received again" hello i want the msg box appear Found "HELLO"
is this possible?
i tried like this but get no luck
VB Code:
Do if InStr(Text1.Text, "HI") Then MsgBox("Found: HI") Else End if if InStr(Text1.Text, "Hello") Then MsgBox("Found: Hello") Else End if Loop
thanks..




Reply With Quote