Hello everyone,
After generating an array of option buttons during runtime I am trying to manage the user's actions on them.
How do you actaully manage runtime generated controls?
I have tried to use:
But then, the number of Cases should correspond to the number of the generated option buttons.
I appreciate your help everyone.
After generating an array of option buttons during runtime I am trying to manage the user's actions on them.
How do you actaully manage runtime generated controls?
I have tried to use:
Code:
Private sub Option1(index as integer)
Select Case index
Case 1
'actions
Case 2
'different actions
.
.
.
End Select
End Sub
I appreciate your help everyone.