Access application on top

  • Thread starter Thread starter reidarT
  • Start date Start date
R

reidarT

I want an Access application to be on top (always on top)
Do I need an API call to do that or what?
reidarT
 
If you mean that you don't want anyone to be able to do anything else on
their machine until they close the Access application, I have used a form as
my main screen that is a popup and placed this code in the On load property:
DoCmd.Maximize ' maximizes the form
DoCmd.RunCommand accCmdAppMinimize 'minimizes the Access window.
You have to make all other forms and reports that you want to view popups.
Be forewarned that the only way to get to other apps is to quit the Access
database.
 

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