Switchboard maxed

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

Experts,

I've gone into Startup and set the Switchboard to display when Access
opens.

Problem is, however, the Switchboard does not open maximized. Any
thoughts?

Thanks,
alex
 
Maximize your window which lists all tables, queries, forms, etc.
Then when you open the main switchboard, the form should be maximized.
 
Alex,

Create an open event for the switchboard form and add 'docmd.Maximize' to
open it in a maximized state.

Daniel
 
Alex,

Create an open event for the switchboard form and add 'docmd.Maximize' to
open it in a maximized state.

Daniel








- Show quoted text -

Thanks Daniel; it worked.
 
Sorry to jump into this discussion, however I need to do the same thing but I
don't know how to "create an open event for the Main Switchboard.'
Should I post again or can you help me.
Thanks
Northwoods
 
1. open your switchboard form in design view.
2. select the form by clicking in the square in the top left hand
corner.
3. right click on the square and choose properties.
4. go to the events tab
5. left click on OnOpen
6. Click on the build button "..."
7. go to the code builder.
8. it will automatically create the sub. edit it to show this:

Private Sub Form_Open(Cancel As Integer)
On Error GoTo tagError

DoCmd.Maximize

Exit Sub

tagError:
MsgBox Err.Description

End Sub


-doodle
 
{{Doodle}} thank you so much for this post. I've been looking EVERYWHERE to
find information about how to get my switchboard to maximize on open! The
steps you provided worked like a charm. You have my everlasting gratitude.
netnut55
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Access Switchboard error message 1
Switchboard Minimized 4
Switchboard in Access 2007 1
I've lost my Switchboard ! 3
Switchboard maximize at start up 4
switchboard problem 4
Form On Top 1
Showing Switchboard Upon Startup 3

Back
Top