Open the index page in FullScreen.

veasna

Registered User.
Local time
Today, 10:44
Joined
Dec 21, 2009
Messages
18
Dear Access Members,

In Access 2007 i want when i start to open the access file i want the page show in fullscreen without ("Home, Create,....." tabs). I want to show only my form.

Could you please tell me how to deal with this?

Thanks,
Veasna.
 
Last edited:
you're going to have to minimize the ribbon in code, and I've never done that before. Also, I don't know how to completely suppress the ribbon, but I know it can be done. I think you're best bet to get the form completely on the screen is to run your application in runtime mode.
 
Hi,

1) You can disable the ribbon using docmd.showtoolbar

Create a function in module glabal

public function fncDisableRibbon ()
docmd.ShowToolbar "ribbon", acToolbarNo
end function

Call the function fncDisableRibbon () through macro AutoExec

2) Another option is to use the extension ACCDR that runs in runtime mode

3) You can disable with XML

Success
 
Many thanks for your answers. Could you please tell me how to Call the function fncDisableRibbon () through macro AutoExec.

Thanks,
Veasna.
 
Dear Avelino,

Thanks you very much for you answer. Now, it's work.

Thanks,
veasna
 

Users who are viewing this thread

Back
Top Bottom