This pseudo code:
Dim Index As Long
For Index = 1 To 100
If Index = > 30 Then
Select Case Index
Case 34
Case 56
Exit Select
Case 89
Case Else
' more code goes here.
End Select
End If
Next
is giving me this error:
Parsing code. Error
Error parsing program.
Error description: Missing Keyword: end select
Occurred on line: 44
End If
But i dont know.
Where can i find a list of supported statements? can i exit from a select block?
Thanks.
Dim Index As Long
For Index = 1 To 100
If Index = > 30 Then
Select Case Index
Case 34
Case 56
Exit Select
Case 89
Case Else
' more code goes here.
End Select
End If
Next
is giving me this error:
Parsing code. Error
Error parsing program.
Error description: Missing Keyword: end select
Occurred on line: 44
End If
But i dont know.
Where can i find a list of supported statements? can i exit from a select block?
Thanks.