Maiximize Form on Open

  • Thread starter Thread starter CEV
  • Start date Start date
C

CEV

Hi, is there an easy way to set up a form to open to the maximim screen size
on each users screen? I think it would look better if the form filled the
whole screen.

Thanks,

CEV
 
Hi, is there an easy way to set up a form to open to the maximim screen size
on each users screen? I think it would look better if the form filled the
whole screen.

Thanks,

CEV

Code the Form's Open Event:

DoCmd.Maximize
 
I did try this and it does maximize the form to the whole screen, but the
objects are then not centered in the middle of the screen. Any other
suggestions?

Thanks,

CEV
 
Hello Fred,

This behavior is as deigned since the objects are set to fixed position to
the left up corener and you could see this behavior in design view of the
form. You may need to use Windows API to calulate and move objects on the
fly when window size is change. However, it might be complex to do this
especially in Access.

Regards,

Peter Yang
MCSE2000/2003, MCSA, MCDBA
Microsoft Online Partner Support

When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.

=====================================================



This posting is provided "AS IS" with no warranties, and confers no rights.


--------------------
Subject: Re: Maiximize Form on Open
Date: Thu, 9 Feb 2006 11:55:32 -0600
Lines: 21
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
X-RFC2646: Format=Flowed; Original
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
Message-ID: <[email protected]>
Newsgroups: microsoft.public.access.forms
NNTP-Posting-Host: advancecpe.brookings.net 66.17.96.235
Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP09.phx.gbl
Xref: TK2MSFTNGXA01.phx.gbl microsoft.public.access.forms:336058
X-Tomcat-NG: microsoft.public.access.forms

I did try this and it does maximize the form to the whole screen, but the
objects are then not centered in the middle of the screen. Any other
suggestions?

Thanks,

CEV
 
Back
Top