how do you do this:
in fractions they have a numerator & denominator. Ok I'm making a fraction project and i can't get this to work:
i have four textboxes two of them are numerators and the other two are Denomiators and a label in my code i want to say:
But when i enter in a number like 50 in the text1 and a 100 in the Text3 the Label doesn't show the Caption.
But when i enter in a number like 5 in the text1 and a 10 in the text3 the Caption "Proper Fraction" displays.
Why Is that? How can i get it to show when the number (text1) is less than the Number (text3) when I Have Numbers like that. Am I forgetting to do something?
lee123
in fractions they have a numerator & denominator. Ok I'm making a fraction project and i can't get this to work:
i have four textboxes two of them are numerators and the other two are Denomiators and a label in my code i want to say:
Code:
IF Text1.text < Text3.text Then
label1.caption = "Proper Fraction"
End IF
But when i enter in a number like 5 in the text1 and a 10 in the text3 the Caption "Proper Fraction" displays.
Why Is that? How can i get it to show when the number (text1) is less than the Number (text3) when I Have Numbers like that. Am I forgetting to do something?
lee123
Comment