I found this little piece of code to register an hotkey:
[DllImport("user32.dll")]
public static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vlc);
protected override void WndProc(ref Message m)
{
if (m.Msg == 0x0312)
MessageBox.Show("Hotkey pressed");
base.WndProc(ref m);
}
public FormMain()
{
InitializeComponent();
//Alt + A
RegisterHotKey(this.Handle, this.GetType().GetHashCode(), 1, (int)'A');
}
It works perfectly, but my problem is I want to use two different shortcuts. I know the second parameter is the id, so I figure I could make a different id and add a new if statement in the WndProc function but I'm not sure how I would go about that.
In short, how would I go about creating a second shortcut?
Thanks,