I don't exactly understand what you want to do, but if you use shortcuts
you can call the EventHandler directly
I suppose that in your code you have something like :
this.menuItem.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
this.menuItem.Click += new EventHandler(shortcut_Click) ;
then you can call the event handler like this: shortcut_Click(null,null)
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.