I was wondering how I would go about writing this IF statement for validation of data entered into certain text boxes.
IF data entered into QuantityTextBox.Text = Letters Then
Display Error (I can do the error msg)
ELSE
Perform the proper calculations (these are also already done)
END IF
I don't know how to say if the text box is = numerical values or alphabetical values. I've checked my school text book and the VB Help files but so far nothing.
Thanks