Hello,
Quote:
> In Vb.net,how can I read the textbox to see if it
> contains special word decided by me?
> For example:
> I have word "Love", I want to read the textbox to know if
> it contains word "love" or not ? How can I do that?
\\\
If InStr(1, Me.TextBox1.Text, "love") Then
MsgBox("Foo")
End If
///
Have a look at regular expressions.
Regards,
Herfried K. Wagner