Easy Select Case question.......
I have a control array with 2 option buttons. Here's what I need to do:
If the index is 0 then I need to do such-and-such, and if the index is anything else, I need to do something different. I HAVE to use a select case statement for this.
VB Code:
Select Case optLookup
Case1 'Index of the optlookup is 0
Case Else
'do something else here
End Select
Am I even close? I need to check the index to determine which option button in the control array is selected. Any help appreciated.