T
Tim Cali
I have 2 option buttons in a frame that each calls a macro when clicked:
Private Sub fraCurrSurvey_AfterUpdate()
Select Case Me.fraCurrSurvey
Case 1
Call SortRspndAsc
Case 2
Call SortRspndOrderEntry
End Select
End Sub
Problem is, when I initialize the form, both are "greyed" out.
How do I default the first one to being on when the form is initialized?
(Logically, I would like to call SortRspndAsc too.)
Thanks.
Private Sub fraCurrSurvey_AfterUpdate()
Select Case Me.fraCurrSurvey
Case 1
Call SortRspndAsc
Case 2
Call SortRspndOrderEntry
End Select
End Sub
Problem is, when I initialize the form, both are "greyed" out.
How do I default the first one to being on when the form is initialized?
(Logically, I would like to call SortRspndAsc too.)
Thanks.