Hello,
I need a code that will check if a certain text exist.
This is how it's now:
If TextBox2.Text = ".sys\clock" Then
TextBox1.Text = TextBox1.Text + Environment.NewLine + ("It's") + DateTime.Now
End If
and I want to make something like this
If TextBox2.Text = ".sys\clock" Then
TextBox1.Text = TextBox1.Text + Environment.NewLine + ("It's") + DateTime.Now
ElseIf .sys\ does not exist in textbox2 then show an error=
Textbox1.text=("You didn't used the .SYS\ code")
End If
I hope you understand...please, HELP ME ! :-(