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
[email protected]
 
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
[email protected]
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.
 
Top