I have a form that is set to Max on open (DoCmd.Maximize)
Inside that form is a command button that opens another form that I do not want maximized. So on open event for that form, I have
DoCmd.MoveSize 5000, 3000, 6000, 2500
But this is getting ignored and that form opens maximized as well. How can I keep the initial form maximized while letting other forms open to a custom size and position?
Thanks
Inside that form is a command button that opens another form that I do not want maximized. So on open event for that form, I have
DoCmd.MoveSize 5000, 3000, 6000, 2500
But this is getting ignored and that form opens maximized as well. How can I keep the initial form maximized while letting other forms open to a custom size and position?
Thanks