How to use the Onkey method in Excel VBA and VB?

How to use the Onkey method in Excel VBA and VB? As a VBA developer you sometimes need to use a key or a combination of keys to run a procedure without using the command

How to use the Onkey method in Excel VBA and VB?

As a VBA developer you sometimes need to use a key or a combination of keys to run a procedure without using the command button on a UserForm. This is possible with the VBA onkey method. The Key argument can specify any single key combined with ALT, CTRL, or SHIFT, or any combination of these keys.

What happens if I omit the Onkey method in Excel?

If Procedure is omitted, Key reverts to its normal result in Microsoft Excel, and any special key assignments made with previous OnKey methods are cleared. The Key argument can specify any single key combined with Alt, Ctrl, or Shift, or any combination of these keys.

What is the definition of Onkey in Excel?

Application.OnKey (Key, Procedure) where Key is the key or key combination (written as a string) that will execute the macro and Procedure is the name of that macro. Note that we can alter the normal behavior of Excel by assigning a key combination to the Key parameter that has a normal Excel response (such as Ctrl-S for save).

What is the procedure argument in Excel application.onkey?

Application.Onkey “ {ENTER}”, the procedure argument has been omitted. In this case when the ENTER key will be pressed; it will simply execute the function that was initially assigned to it by MS Excel. This syntax is used to enable any key that was disabled.

What is the key argument for Onkey in Excel?

The Key argument can specify any single key combined with Alt, Ctrl, or Shift, or any combination of these keys. Each key is represented by one or more characters, such as a for the character a, or {ENTER} for the Enter key.

How to use application on key in Visual Basics Excel?

“Test” will be executed everytime the “right arrow button” is pressed. To deactivate it just run Application.OnKey ” {RIGHT}” without a target. Application.OnKey will not set back to nothing if the workbook is closed or something like that.