Thread: [Solved] Link Active X Checkboxes
View Single Post
 
Old 06-13-2015, 04:42 AM
Glenn0004 Glenn0004 is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Jun 2015
Posts: 3
Glenn0004 is on a distinguished road
Default Link Active X Checkboxes

I'm trying to put together a simple (?) form using a Active X and legacy form controls - I have a situation where if a user selects Checkbox 1 (active X) then Checkbox 3 and Checkbox 4 are also selected, likewise if a user select Checkbox 3 then Checkbox 4 and 1 are selected and so on... in reverse, if any are deselected then the remaining boxes will be deselected.

At the moment I can complete the first part of the objective using the below, but not the deselection element.

Private Sub CheckBox1_Click()
CheckBox2.Value = True
End Sub

Can anyone advise
Reply With Quote