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:
  1. Select Case optLookup
  2.  
  3. Case1  'Index of the optlookup is 0
  4.  
  5. Case Else
  6. 'do something else here
  7. 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.