Hello Everybody,
What is the difference between this IF statements below. Which is better to use? or On what scenario could the the first if statement and the 2nd if statement can be use or applicable?
If txtName.Text = "simple" Then txtResult.Text = "simple"
and
If txtName.Text = "not simple" Then
txtResult.Text = "not simple"
End If
Regards,
Bugwee