Open forms alway in maximise mode _ equal to my desk top screen

  • Thread starter Jithedra Atluri
  • Start date
J

Jithedra Atluri

HI

any one knows what properties I should set to open forms
always in maximise mode.

Probelm :
When I open the firmst form it's full screen, then using
command button I'll navigate to next screen. from Next
screen I'm trying to comming back with back command button

but first form is opening in minimise mode. how can open
it in maximise mode ??

reg
jithedra
(e-mail address removed)
 
F

fredg

HI

any one knows what properties I should set to open forms
always in maximise mode.

Probelm :
When I open the firmst form it's full screen, then using
command button I'll navigate to next screen. from Next
screen I'm trying to comming back with back command button

but first form is opening in minimise mode. how can open
it in maximise mode ??

reg
jithedra
(e-mail address removed)
Code the Open event of any form you always wish to open maximized:
DoCmd.Maximize

make sure you do NOT have any code to minimize the form...
DoCmd.Minimize
in some other form event, such as the Load event.
 

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

Top