vote up 0 vote down star
    private void CheckBox_CheckedChanged(object sender, EventArgs e)
    {
        CheckBox chk = (CheckBox)sender;
        SetValuesInDB( System.Security.Principal.WindowsIdentity.GetCurrent().Name,
                       DateTime.Today.Date);

    }

Now I want to setvalues of my id and current date in database only if I directly clicked on the checkbox.

I dont want to update those values in Database if some other event triggers this event handler. For eg: while loading everytime the checkbox gets checked but the database value for this checkbox is unchecked. so, everytime this event handler is triggered and database value is updated. How do I take care of it?

flag

67% accept rate
Can you try to explain your question a little better. When you say "while loading everytime the checkbox..." what loading are you referring to? Are you ever calling this method directly? – BFree Jan 7 '09 at 21:53
@BFree: His reference to "loaded every time" likely refers to the forms Load event or OnLoad override where it's typical to put initialization code, such as populating checkboxes. Unless he also wants to exclude keyboard interaction from triggering his logic, the only answer to date should work for him... – Jason D Nov 29 at 4:07

1 Answer

vote up 2 vote down

Use the CheckBox.Click event instead. It gets fired if either the user clicks on the checkbox or uses Space to toggle the checkbox.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.