I have the following
Because the first Else has not been closed I cannot see what is wrong with having two nested If's following.
Will somebody please enlighten me.
B4X:
Sub Test
If ... Then
...
Else If ... Then
...
End If
If ... Then
...
Else
...
End If
End If
End Sub
Line 62 being the final End IfCompiling code. Error
Error parsing program.
Error description: Missing Keyword: end sub
Occurred on line: 62
End If
Because the first Else has not been closed I cannot see what is wrong with having two nested If's following.
Will somebody please enlighten me.