|
Subject:
|
call button's click event explicitly
|
|
Posted By:
|
sansircar
|
Post Date:
|
1/24/2006 9:48:47 PM
|
I wanted to call the click event of the button on the click of a checkbox - for eg:-
i wanted to call the event below explicitly when a checkbox is checked private void btnSave_Click(object sender, System.EventArgs e)
{
} please suggest
|
|
Reply By:
|
jbenson001
|
Reply Date:
|
1/25/2006 12:07:30 AM
|
You can do that, but I suggest creating a sub or function. Then call that from your button click event and your checkbox click event.
Jim
|