Full Screen Format?

  • Thread starter Thread starter Bobby
  • Start date Start date
B

Bobby

Hi All,

I created the AutoExec macro to run a form when I open up
the database. But I want it to open up in Full Screen
format. How do I do this, there is a maximize property
in the macro but not a full screen one. Let me know.

Thanks
Bobby
 
Use the Macro action RunCommand with "Command"
argument "AppMaximize"

HTH
Van T. Dinh
MVP (Access)
 
Thanks, but this only makes the App maximized. I want it
to be full screen format. No Windows start bar, no
access bar, only the form on the screen. Any thoughts?

Thanks
Bobby
 
Don't know about Macros but you can do something like that with VBA using
WinAPI. See The Access Web article:

http://www.mvps.org/access/api/api/0019.htm

There are complications with hiding the Access Application window, though.
Remember that Access is supposed to work in the Access window. Read the
note in the article carefully.
 
Back
Top