Hi, Tim.
Is there a setting somewhere so that when you open an access database it
maximizes the size of the window?
No. However, you may run code or an Autoexec macro that maximizes the
Database Window upon opening the database. Use the DoCmd.SelectObject( )
method to do so. For a VBA procedure that does this, try:
Public Function maximizeDBWindow() As Boolean
On Error GoTo ErrHandler
DoCmd.SelectObject acForm, "Form1", True
DoCmd.Maximize
maximizeDBWindow = True
Exit Function
ErrHandler:
MsgBox "Error in maximizeDBWindow( )." & vbCrLf & vbCrLf & _
"Error #" & Err.Number & vbCrLf & vbCrLf & Err.Description
Err.Clear
End Function
.... where Form1 is the name of any form in the database.
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.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.