what's the code to find the bigger number of the two text boxes????????hurry
i tried this one,but cannot :
Private Sub CommandButton1_Click()
If textbox1 > textbox2 then
Msgbox textbox2 + “ is bigger “
Else if textbox2 > textbox1 then Msgbox textbox1 + “ is smaller “
Else
Msgbox “both the numbers are equal”
End if
End sub
is there any error???????
更新1:
actually user faster's code works,,but it doesn't show like example: 2 and 1 "2 is bigger" somth like that
更新2:
plz help me