Presto wrote:
[Quoted Text] >I have my frmMain form maximized on load. I need it to stay that way. >When I open any other forms, they all maximize too. > >I added code like this to set the form's size but they all still load >maximized anyway. > > InsideHeight = 7200 ' Five inches high > InsideWidth = 4320 ' Three inches wide > >I tried to add DoCmd.Restore but this restores ALL my forms.
That's the way the Windows MDI (multiple document interface) works.
You can get the effect you want in three(?) ways. Two are to make all the all the other forms popup forms or to open them in dialog mode. The other way is to not maximize the main form and instead set its size (MoveSize method) to something close to the full screen.
-- Marsh MVP [MS Access]
|