Hi,
I know how to do the select all clear all buttons, however is there a way where i would have a lable/text box where when the mouse is over it, it would select all and the mouse is away it would clear all check boxes? Can this be done?
Why not create a button to Select All and another to Deselect All? Or you can use one toggle button so that when depressed it Selects All and when raised Deselects All.
Yeah I was thinking the same thing but is it on focus and would it be as simple as having the queyname.value = true ir false??? Is there a more complicated code that needs to be written? I want to avoid using 2 buttons and that the issue...
ok so when i use the toggle button, i can get it to select all but how do i clear it when i click off again... is it the lostfocus event?
Private Sub Toggle266_GotFocus()
chkbox1.Value = True
End Sub