O
oldsap
I have this code which works just fine for a single key press:
If e.KeyCode = 236 Then
MsgBox("alt") 'Alt key is pressed
End If
how do i code it when i want to capture the event wherein both "ALT'
key and a number/letter key are pressed simultaneously?
i tried this:
http://support.microsoft.com/kb/839201
but i can't seem to make it work on my smartphone wm6 device
If e.KeyCode = 236 Then
MsgBox("alt") 'Alt key is pressed
End If
how do i code it when i want to capture the event wherein both "ALT'
key and a number/letter key are pressed simultaneously?
i tried this:
http://support.microsoft.com/kb/839201
but i can't seem to make it work on my smartphone wm6 device