CNTL + (key) to launch form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
Is is possible to do do this?

User has Form1 open, user presses CNTL + L (or some other letter if needed)
and it will open Form2?
 
You can use an Autokeys macro to map specific key combinations to perform
actions.
 
Hello,
Is is possible to do do this?

User has Form1 open, user presses CNTL + L (or some other letter if needed)
and it will open Form2?

If you're willing to use the Alt key instead, you can do it with
builtin features of Access. For example, you can have a Command Button
or a Label with a caption containing a letter preceded by an
ampersand: e.g. a command button with a caption of

Open &Laboratory Form

Typing Alt-L will "click" the button, which could open the form in its
Click event.

Note that Windows has defined functions for most Ctrl keystrokes;
hijacking these for other uses may really annoy some experienced
users. If I were copying and pasting text into a form control, I'd be
peeved if typing Ctrl-V executed some unexpected Form action rather
than pasting my text! Alt keys are less pre-committed.

John W. Vinson[MVP]
 
Thank you John and Duane,
Not sure why I seemed to think CNT+ was the right way to go. Alt+ works fine.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top