Douglas Farias Expert Licensed User Longtime User Dec 1, 2013 #1 hi to all i m not programer how i make this? B4X: Else If EditText2.Text > 1710 and < 2000 Then Msgbox("funfo","funfo") if number is 1710 + and 2000 - show me a msg? exemple 1710 show msg 1711 show msg 1999 show msg 2000 show msg 2001 dont show 1709 dont show sory for my english i m brasilian
hi to all i m not programer how i make this? B4X: Else If EditText2.Text > 1710 and < 2000 Then Msgbox("funfo","funfo") if number is 1710 + and 2000 - show me a msg? exemple 1710 show msg 1711 show msg 1999 show msg 2000 show msg 2001 dont show 1709 dont show sory for my english i m brasilian
Erel B4X founder Staff member Licensed User Longtime User Dec 1, 2013 #2 Every condition clause should be a "complete component": B4X: Else If EditText2.Text > 1710 AND EditText2.Text < 2000 Then Upvote 0
Every condition clause should be a "complete component": B4X: Else If EditText2.Text > 1710 AND EditText2.Text < 2000 Then