Thread
:
Togglebutton to change Checkboxes
View Single Post
#
1
Posted to microsoft.public.excel.programming
Greg Wilson
external usenet poster
Posts: 747
Togglebutton to change Checkboxes
I suggest a loop instead:
Private Sub ToggleButton1_Click()
Dim i As Integer
For i = 1 To 17
Me.Controls("CheckBox" & i).Value = ToggleButton1.Value
Next
End Sub
Reply With Quote
Greg Wilson
View Public Profile
Find all posts by Greg Wilson