Override Access Function Keys Globally

  • Thread starter Thread starter Lou Civitella
  • Start date Start date
L

Lou Civitella

I have a form that I would like to open when the user hits the F1 key no
matter where in Access the user is. Plus I do not want the Help system to
popup.

How do I go about doing this?

Thanks,
Lou
 
Hi, Lou.
I have a form that I would like to open when the user hits the F1 key no
matter where in Access the user is.

You can do this with an AutoKeys macro. Create a new macro. In the "Macro
Name" column, type:

{F1}

In the "Action" column, select the "OpenForm" item from the combo box. In
the "Action Arguments" section in the lower pane, select the name of the
form you want to display when the <F1> key is hit. Save the new macro and
name it:

AutoKeys

Now, the user can hit the <F1> key from any database object such as a table,
form or report (modules in the VB Editor will ignore this command though,
and display the built-in Help), and your form will be displayed.

HTH.

Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips.

(Please remove ZERO_SPAM from my reply E-mail address, so that a message
will be forwarded to me.)
 
Lou,

Gunny's suggestions are correct. However, is there some other key you
can use instead of F1 which is traditionally used for Help?
 

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