from i have the following items in combobox A,B,C,D,E,F,G i want keydown to check which item selected to combobox i try
Private Sub kbHook_KeyDown(ByVal Key As System.Windows.Forms.Keys) Handles kbHook.KeyDown
`If My.Computer.Keyboard.CtrlKeyDown AndAlso
My.Computer.Keyboard.AltKeyDown AndAlso
My.Computer.Keyboard.ShiftKeyDown AndAlso
ComboBox2.SelectedValue.ToString then `
'some stuff
end if
end sub
in combobox i choose A(ctrl+alt+shft+A) but i got null error