Forms in Access 97

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

Guest

Hi

I have a Form, which i am using as the Start Up screen in Access, the
problem i have is the Form never opens the full length of the screen and it
does not seem to matter what i do, it always opens aout half the size of the
screen.

Is there an option somewhere trhat makes a form open to its maximum?

Also,

Is there a way of getting rid of the Find Records at the bottom of the screen?

Thanks
Dave
 
In the form's OnOpen event, place the following line:
DoCmd.Maximize
Hope this is what you're looking for.

John
 
Also, if by "Find Records" you mean the record navigation buttons, you can
get rid of these by setting the form's Navigation Buttons property to no.

John
 
Is there something different in Access 2002? I tried the command mentioned
below and it was looking for a macro command???

Jim
 
In the Onload event add

DoCmd.Maximise

Is there something different in Access 2002? I tried the command mentioned
below and it was looking for a macro command???

Jim

Please remove obvious from email address if emailing.
 
Back
Top