Can I have TextLabels (or any other form elements) referred to with variable names?
To be precise, is it acceptable in Gambas3 to write a code somewhat like the following - after I named the TextLabels appropriately on the Form.form (starting from TextLabel1 / ending with TextLabel10)?
Public Sub Form_Open()
Dim ii As Integer
For ii = 0 To 9
TextLabel(1 + ii).Visible = True
Next
End
(Tried it, doesn't function.)