Hi Everyone!
First of all, thanks in advance for the help! This should be an easy one, but I'm at a loss. I want to 'toggle' a toggle button
based on results from a recordset.
Heres the code I've been attempting to use:
Heres the error msg I receive when i try to set the toggle buttons value:
Run-time error '2448': You can't assign a value to this object.
... thanks again for the help.
Casey.
First of all, thanks in advance for the help! This should be an easy one, but I'm at a loss. I want to 'toggle' a toggle button
based on results from a recordset.
Heres the code I've been attempting to use:
Code:
Select Case objRecordSet("PSsentBy")
Case "Neil Watts"
Me.Controls!Toggle75.Value = True
Case "Tracy Gilliespie"
Me.Controls!Toggle76.Value = True
Case "Melanie Gillett"
Me.Controls!Toggle77.Value = True
Case "Debra Sinclair"
Me.Controls!Toggle78.Value = True
End Select
Heres the error msg I receive when i try to set the toggle buttons value:
Run-time error '2448': You can't assign a value to this object.
... thanks again for the help.
Casey.