this is the code I'm using
Sub btnguess_Click
randNum = Math.GetRandomNumber(10)
FCControls.GetText(txtCels)
If txtCels = randNum Then
lblanswer = "That's correct the Madame would like to hire you!"
ElseIf txtCels <1 or >10 Then
lblanswer = "Please enter number between 1 and 10"
Elseif txtCels <> randNum Then
lblanswer = "That's incorrect the Madame asks you to leave."
EndIf
endsub
error that I'm getting : 45,24:Expected a condition here.
I'm not sure what I'm missing here
The problem is at
ElseIf txtCels <1 or >10 Then
When specifying a statement, you can't leave out a condition even if previously mentioned.
You'll have to re-write
txtCels
before the>10
, i.e.Without this, you're essentially saying 'greater than 10' by itself, which makes no sense.