Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
How to call shortcut key winform one form to other form in (c#.net) .

example :

Form2 :
C#
if (keyData == (Keys.F10))
{
// Here call form1 (save button click) Directly. 
// How to write code here to call (form1 btnsave_click()).
}



Regards,
Karthikeyan,Bangalore
Posted
Updated 4-Dec-12 23:37pm
v2

Don't.
Instead, create an event (call it SaveRequest for example) in form2, which form1 handles - it can then decide how to save. If you start accessing controls from outside the form, then you tie the designs together and you can no longer alter one without considering the effects this may have on any other forms that might use it.

Creating an event is easy: A simple code snippet to add an event[^] - all the code you need is right at the start, the rest of the tip just makes it easier to create them!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900