D
Dao N
I've created a userform (in 2007) with checkboxes and 2 command buttons. To
activate the form I've created an icon on the Developer's menu.
For some reasons when I activate the form from the icon the checkboxes don't
work when I click on them. It appears as though they've been disabled. The
command buttons are the OK and Cancel buttons. They worked.
The checkbox code contains a basic toggle function, eg:
Sub CheckBox1_Click()
If CheckBox1.Value = True Then
CheckBox1.Value = False
Else
CheckBox1.Value = True
End If
End Sub
The bizzare thing is that when I activate the form from VB Editor the
checkboxes worked.
What am I doing wrong?
Pls help - I've been looking at codes for so such a long time and still
can't work out why it's not working!
Thank you in advanced.
Dao
activate the form I've created an icon on the Developer's menu.
For some reasons when I activate the form from the icon the checkboxes don't
work when I click on them. It appears as though they've been disabled. The
command buttons are the OK and Cancel buttons. They worked.
The checkbox code contains a basic toggle function, eg:
Sub CheckBox1_Click()
If CheckBox1.Value = True Then
CheckBox1.Value = False
Else
CheckBox1.Value = True
End If
End Sub
The bizzare thing is that when I activate the form from VB Editor the
checkboxes worked.
What am I doing wrong?
Pls help - I've been looking at codes for so such a long time and still
can't work out why it's not working!
Thank you in advanced.
Dao