Category "keydown"

Using jQuery, why is this function being called when I only click one of the two keys?

I have this code: $(document).bind('keydown', 'ctrl+1', function () { alert('You found the hotkey ctrl+1!'); }); But if I click on either the Ctrl or the 1

How do you detect simultaneous keypresses such as "Ctrl + T" in VB.NET?

I am trying to detect the keys "Control" and "t" being pressed simultaneously in VB.NET. The code I have so far is as follows: Private Sub frmTimingP2P_KeyDown

Unable to cast object of type 'System.EventArgs' to type

In my Form_Load AddHandler KeyDown, AddressOf Form1_KeyDown RaiseEvent KeyDown(Me, e) Event KeyDown(ByVal sender As Object, ByVal e As KeyEventArgs) Private S