G Guest Jun 20, 2006 #1 When I use the Maximize command in a macro all of the open forms expand . . . not just the active form. Why and how can this be fixed?
When I use the Maximize command in a macro all of the open forms expand . . . not just the active form. Why and how can this be fixed?
F fredg Jun 20, 2006 #2 When I use the Maximize command in a macro all of the open forms expand . . . not just the active form. Why and how can this be fixed? Click to expand... This is normal Access behavior. If you want just that one form to maximize, code it's Open or Load event: DoCmd.Maximize Code it's Close event: DoCmd.Restore When you close the form, the other objects will then be un-maximized.
When I use the Maximize command in a macro all of the open forms expand . . . not just the active form. Why and how can this be fixed? Click to expand... This is normal Access behavior. If you want just that one form to maximize, code it's Open or Load event: DoCmd.Maximize Code it's Close event: DoCmd.Restore When you close the form, the other objects will then be un-maximized.