Hi Helen
This is the answer I gave to Tia a few hours ago which I think may be what
you're looking for.
__________________________________________
Open the form in design view.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12148
Right click on the grey section of the form (below to space where you put
your buttons, box, lists, etc)
On the dropdown box select Event
Select On-Open
Click the build options (three dots on the right)
Select Code
You will see this
Private Sub Form_Open(Cancel As Integer)
End Sub
Insert one line of code (DoCmd.Maximize)
So that your code looks like this
Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
End Sub
Click Save and close your form.
When you open it again it "should" stay maximixed.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12148
--
Wayne
Manchester, England.
"Helen" wrote:
> I have got a database which has a main page which then can open up three
> forms which have been done with command buttons. Everytime i go into the
> database my main form is not big enough i always have to maximize it. Is
> there anyway that i could run a macro in the back ground so everytime i open
> up the main page it is the size of the screen not a small page as it is quite
> annoying to do this everytime.
> Thanks
>