Hi,
how do i set the value of a check box with out firing the click_event?
Many thanks
Nick
Printable View
Hi,
how do i set the value of a check box with out firing the click_event?
Many thanks
Nick
What event would you like to use to change the value?
That's how you can stop it ..Quote:
Originally posted by nswan
Hi,
how do i set the value of a check box with out firing the click_event?
Many thanks
Nick
VB Code:
Option Explicit Dim m_blnStopFire As Boolean Private Sub Check1_Click() If m_blnStopFire Then m_blnStopFire = False: Exit Sub MsgBox "I will never fire unless you click on checkbox itself ... " End Sub Private Sub Command1_Click() m_blnStopFire = True Check1.Value = vbChecked End Sub