How do I "expand" my start up form, so it'll cover all available .

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm developing a small database; I'd like for my start up form to cover all
available space on the screen. Any help will be appreciated.
 
On Mon, 13 Dec 2004 09:27:04 -0800, "Val C" <Val
I'm developing a small database; I'd like for my start up form to cover all
available space on the screen. Any help will be appreciated.

Open the Form in design view; view its Properties; select the Open
event from the Events tab. Click the ... icon by it and edit the code
to:

Private Sub Form_Open(Cancel as Integer) < Access gives you this
DoCmd.Maximize
End Sub < and this


John W. Vinson[MVP]
Join the online Access Chats
Tuesday 11am EDT - Thursday 3:30pm EDT
http://community.compuserve.com/msdevapps
 
Back
Top