Lets say that you are working on a program such like Notepad, for instance. You want to make a Ctrl+S key event to save your work.
This is the ONLY way I have found out that does not cause any conflictions at all.
In the KeyUp Sub of, leys say, Form1 then this is how it should look for Ctrl+S
If e.Control = True And e.KeyCode = Keys.S Then
EXCECUTION CODE HERE
End If
And there you have it. Simple, short and effective. Perfect. You can minipulate this chunk of code with any keys that you want.
Enjoy messing around with it.