davman2002
Programmer
How can I get the index of an option button control array, if no option has not been selected. Currently I know how to get the index of the control array based on what option was selected. but my current way means that the user must click on an option. This poses a probelm for form validation.
my code is
Private Sub optPhy_Click(Index As Integer)
'
'Get Index value of the option Selected
'
intPhyIndex = Index
End Sub
my code is
Private Sub optPhy_Click(Index As Integer)
'
'Get Index value of the option Selected
'
intPhyIndex = Index
End Sub