G
Guest
I am trying to reset a list of checkboxes back to "0" after a button is
clicked by iterating through the controls. My code now looks like this:
Dim ct AS control
For Each ct In Me.Controls
If ct.Value <> 0 Then
ct.Value = 0
End If
Next ct
I get an error that method is not supported and I don't see "value" on the
list after typing "ct."
The controls are unbound (I bet that's it but how to do?).
clicked by iterating through the controls. My code now looks like this:
Dim ct AS control
For Each ct In Me.Controls
If ct.Value <> 0 Then
ct.Value = 0
End If
Next ct
I get an error that method is not supported and I don't see "value" on the
list after typing "ct."
The controls are unbound (I bet that's it but how to do?).