You can use the SendKeys action to send keystrokes directly to Microsoft Access or to an active Microsoft Windows-based application.
The SendKeys action uses the following arguments.
Action argument |
Description |
Keystrokes |
The keystrokes you want Microsoft Access or the application to process. You can type up to 256 characters. This is a required argument. |
Wait |
Specifies whether the macro should pause until the keystrokes have been processed. Click Yes to pause or No not to pause. The default is No. |
Microsoft Access processes the keystrokes it receives through the SendKeys action exactly as if you had typed them directly in a Microsoft Access window.
To specify the keystrokes, use the same syntax as the SendKeys statement.
You can use this action to enter information in a dialog box, particularly if you don’t want to interrupt the macro to respond manually to the dialog box. Some Microsoft Access actions, such as Print and FindRecord, automatically select the options in certain frequently used dialog boxes. You can use the SendKeys action to select the options in less commonly used dialog boxes.
If you want to send more than 256 characters to Microsoft Access or another Windows-based application, you can use several SendKeys actions in succession in a macro.
Using the SendKeys action to send keystrokes triggers the appropriate KeyDown, KeyUp, and KeyPress events. Sending non-ANSI keystrokes (such as a function key) doesn’t trigger the KeyPress event.
This action isn’t available from Visual Basic. Use the SendKeys statement instead.
GoToControl Action; KeyDown, KeyUp Events; KeyPress Event; SelectObject Action; SendKeys Statement; SetValue Action.