Does a checkbox not fire an event, when I changed its value by mouse?
My code:
Sub Process_Globals
Private CopyChkBox As CheckBox
End Sub
Sub AppStart (Form1 As Form, Args() As String)
CopyChkBox.Initialize("CopyEv")
End Sub
Sub CopyEv_CheckedChange(Checked As Boolean)
Log(Checked)
End Sub
Whenever I programmatically write a "True" or "False" to the checkbox's value, the event is fired. But when I change the value by mouse it is not!
Thanks for any help!
My code:
Sub Process_Globals
Private CopyChkBox As CheckBox
End Sub
Sub AppStart (Form1 As Form, Args() As String)
CopyChkBox.Initialize("CopyEv")
End Sub
Sub CopyEv_CheckedChange(Checked As Boolean)
Log(Checked)
End Sub
Whenever I programmatically write a "True" or "False" to the checkbox's value, the event is fired. But when I change the value by mouse it is not!
Thanks for any help!