Again: HELP!!! Problem at opening forms

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Thank you very much!

But how do I must proceed for the form I want to open at when opening the
database - from theTools-->Startup menu specified at :"Display Form/Page:" ?
 
Thank you very much!

But how do I must proceed for the form I want to open at when opening the
database - from theTools-->Startup menu specified at :"Display Form/Page:" ?

ummm... click the dropdown box on the "Display Form/Page" control and
select the form that you want to open automatically when the database
opens.

Just looking at the control won't tell Access what you want... <g>
 
The entire question was how do I open a form MAXIMIZED using that menu
option.

Sorry, missed the beginning of the thread.

You can't - at least not just using that menu option.

Instead, put code in the Form's Open event:

Private Sub Form_Open(Cancel as Integer)
DoCmd.Maximize
End Sub
 
Back
Top