When I open an Access file, the box that appears first is not maximized. I have to click the maximize button on the top right of the screen. Is there any option available that will maximize this screen always when opening a file?
You can also put the following code in the On Load Event of your Welcome Form (that the form that you select in the Tools, StatUp menu Display Form/Page:;
Code:
DoCmd.RunCommand acCmdAppMaximize
This will maximise the application window if however you want the form maximised use;
Which one are you dealing with? If 2003 or below, if you used the AutoExec Macro you can add an Action of RunCommand and the Command is DocMaximize. If you used the other through code you can use
DoCmd.RunCommand acCmdDocMaximize
In 2007 or 2010, while you have the database open you can drag the Nav Pane over as far as you want to and then it will be that way every time you use it until you change it back. However, in that instance it makes no sense to do so since it doesn't display the objects in more than one column down the page.