I've been writing a pretty simple application that involves the user entering three numbers into a pair of text boxes (Three numbers each) and the result label changing according to what's written in there... I've tried both Select Case and If statements (An example of the code follows), but I get the same problem: On some (About 30%) combinations of numbers, instead of the result that's written for that combination I get a result for an entirely different combination! Here's an example of the code in Select Case and If:

If TxtBoxone = 111 And TxtBoxtwo = 222 Then
LblTheResult = "Whatever I want it to be"
End If
(More If code for other combinations)

Select Case TxtBoxone And TxtBoxtwo
Case 111 And 222: LblTheResult = "Whatever I want it to be"
(More case code for other combinations)
End Select

I've tried converting the Text boxes to Integers, Doubles, Singles, Strings, Currencies... I've tried making LblTheResult the end result for both text boxes, and the numbers are right- but some of them still just call up the wrong words! I've had two IDENTICAL Case statements except for the second text box's entry and the entry in qoutation marks, and both of them made LblTheResult equal to the same thing.

Any help would be appreciated, thanks.