Click here to Skip to main content
15,897,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all

I have one side menubar where i have link buttons.i have assigned shortcut key to that link button i.e. ALT+R
now i want like suppose if i press ALT+R, then it should open the respective page..
Please tell me how to assign this

Thank you
Posted

1 solution

LinkLabel Doesn't have this Property
But You can Make Possible by Handelling KeyUp or KeyDown Event of Your Form

VB
Private Sub Form1_KeyUp(sender As Object, e As KeyEventArgs) Handles Me.KeyUp
    If e.Alt Then
        If e.KeyData = Keys.R Then Form2.Show()
    End If
End Sub
 
Share this answer
 
Comments
Ashok19r91d 26-Dec-12 3:22am    
Set Form's "KeyPreview" Property = True
If You Set False Application Will not Handle KeyUp and KeyDown Event...

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