link key from keyboard with button to run the code instead of click on the button

MKLAQ

Active Member
Joined
Jan 30, 2021
Messages
397
Office Version
  1. 2016
Platform
  1. Windows
Hi guys
I have project contains many buttons inside the sheet whether active X or not and userform contains commandbuttons .
so I want to use the key from keyboard to running the code instead of click the button .
example :
button 1 (inside sheet) = F1 from keyboard
commandbutton1 active X (inside sheet)=C (letter from keyboard)
commandbutton1 (onuserform)= F3 from Keyboard and so on for each button .
also posted here
link key from keyboard with button to run the code instead of click on the button
thanks in advanced.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
There are key functions you shouldn't use and this YouTube video will show/suggest how to assign them.

On a user form in VBA you can assign an accelerate key which will underline a letter then you can use that letter on w the user form is displayed.

 
Last edited:
Upvote 0
I meant use the Alt key with the letter. Like wise with an ActiveX button you can assign an accelerator.
 
Upvote 0
thanks for the video .
I try to add {ENTER} instead of letter, but doesn't work .
I note shortcut should use CTRL+SHIFT+ ...
what about just use CTRL alone with letter or just letter alone when active sheet?
 
Upvote 0
Take a look at this video it will show you how to use application.onkey method. Be careful though as you need to switch things off before closing the workbook.

 
Upvote 0
with this try doesn't work for me
VBA Code:
Private Sub Workbook_Activate()
Application.OnKey "^E", "macro1"
End Sub

Private Sub Workbook_Deactivate()
Application.OnKey "^E", ""
End Sub

Sub macro1()
MsgBox "hi"
End Sub
 
Upvote 0
VBA Code:
Private Sub Workbook_Activate()
    Application.OnKey "^e", Me.CodeName & ".macro1"
End Sub

Private Sub Workbook_Deactivate()
    Application.OnKey "^e", ""
End Sub

Sub macro1()
    MsgBox "hi"
End Sub
 
Upvote 0
Thanks Jaafar
when I use CTRL+E
doesn't run the macro just show EXCEL message !
 
Upvote 0
Your macro1 only indicates a message box! Nothing else.so what is the macro name as well as what is the code within the macro?
 
Upvote 0
Your macro1 only indicates a message box!
that doesn't mattter . just to test your suggestion .
what is the macro name
what about post#6 ?!
what is the code within the macro?
regardless what the code contains. should run without problem if the macro name is correct.
 
Upvote 0

Forum statistics

Threads
1,215,425
Messages
6,124,822
Members
449,190
Latest member
rscraig11

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top