|
You have a type mismatch.
Do you mind posting all your code so we can tell you what it is.
And by the way, your code is working like If Text1.Text = (5 Or may)
which is trying to do a binary OR between 5 and may. You probably want: If Text1.Text = 5 Or Text1.Text = may
|