dynamic form checkbox question
i create a series of checkboxes dynamically.
Set newButton5 = Me.Controls.Add("Forms.checkbox.1")
newButton5.Value = False
With newButton5
.name = checkbox & i & "C"
End With
i know how to get the value of these controls, but how do i act on an event?
"Private Sub Checkbox1c _click()" doesn't work.
--
Gary
|