Click here to Skip to main content
15,892,289 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hii, i need siomulteniously three key press for shortcut to open new window form on keydown event. for example control + R + D
Posted
Comments
OriginalGriff 8-Mar-14 5:09am    
And?
What have you tried?
Where are you stuck?
dpokiya 8-Mar-14 5:29am    
control+D+R keys
OriginalGriff 8-Mar-14 5:55am    
So you have tried pressing the CTRL+D+K keys and it doesn't work?
Or what?

I repeat: What have *you* tried? Where are *you* stuck?
dpokiya 8-Mar-14 22:29pm    
i just tried triple key means
CTRL+D+K
CTRL+D+K
CTRL+A+L
CTRL+D+r
CTRL+W+H
.
Richard MacCutchan 9-Mar-14 4:23am    
And what happened? Unless you explain your problem in proper detail then it is unlikely that anyone can help you.

1 solution

 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 9-Mar-14 0:41am    
This is fair enough, my 5, but something tells me that OP may have trouble using this information — please see comments to the question, especially answers to my questions in those comments... :-)
—SA
Richard MacCutchan 9-Mar-14 4:23am    
Yeah, OP seems to think it will happen by magic.
dpokiya 10-Mar-14 5:45am    
sir, i want to open windowsform by pressing these keys. that is ctrl+R+D
Richard MacCutchan 10-Mar-14 5:47am    
So add some code to capture the keys. What's the problem?
dpokiya 10-Mar-14 6:54am    
If e.KeyCode = Keys.N AndAlso e.Control Then
Dim frm As New FrmNewsms
frm.Show()
end if

this code is given for two keys that is ctrl+N

i want to open form in pressing three keys siomulteniously

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900