E
Eliezer
I have the following code:
Do Until [ ... ]
repName = wrksheet.Cells(currentInputRow, "A")
'does user want to process commissions for this
user?
If
mainForm.repsNames_frame.allOrSome_frame.someReps_rb.Value
= True Then 'if this button is checked, user only wants
some reps
' do lots of stuff...
End If
Loop
I'm getting the error "Object doesn't support this
property or method" on the line beginning with "IF".
What's the proper way for me to check the value of a
radiobutton, or in other words, why isn't this working?
(As you can see from the current reading of that line, the
readiobutton is enveloped in a frame inside of another
frame.)
Thanks so much,
Eliezer
Do Until [ ... ]
repName = wrksheet.Cells(currentInputRow, "A")
'does user want to process commissions for this
user?
If
mainForm.repsNames_frame.allOrSome_frame.someReps_rb.Value
= True Then 'if this button is checked, user only wants
some reps
' do lots of stuff...
End If
Loop
I'm getting the error "Object doesn't support this
property or method" on the line beginning with "IF".
What's the proper way for me to check the value of a
radiobutton, or in other words, why isn't this working?
(As you can see from the current reading of that line, the
readiobutton is enveloped in a frame inside of another
frame.)
Thanks so much,
Eliezer