J JVermast Registered User. Local time Today, 04:54 Joined Jun 15, 2005 Messages 70 Jul 19, 2005 #1 Is there any way to make a form auto maximize on opening? I can't seem to find anything on this subject. Thanks.
Is there any way to make a form auto maximize on opening? I can't seem to find anything on this subject. Thanks.
T ThreeCrow Registered User. Local time Today, 04:54 Joined Jun 22, 2005 Messages 148 Jul 19, 2005 #2 In the Event Property On Open place this code DoCmd.Maximize This will open your form full screen. and in the Event Property On Close place this code DoCmd.Restore this will reverse the first code hope this helps
In the Event Property On Open place this code DoCmd.Maximize This will open your form full screen. and in the Event Property On Close place this code DoCmd.Restore this will reverse the first code hope this helps
J JVermast Registered User. Local time Today, 04:54 Joined Jun 15, 2005 Messages 70 Jul 20, 2005 #3 DoCmd.Maximize when placed in the "On Open" Event field of the form gives me the error "Microsoft cannot find the Macro 'DoCmd'"
DoCmd.Maximize when placed in the "On Open" Event field of the form gives me the error "Microsoft cannot find the Macro 'DoCmd'"
KenHigg Registered User Local time Today, 07:54 Joined Jun 9, 2004 Messages 13,327 Jul 20, 2005 #4 You need to erase that out and then select the ellipsis (...)(sp?) to open the 'vba code' window. The enter the docmd.maximize Edit: Or just do a seperate macro with the 'Maximize' command in it and call it on the on open event! Last edited: Jul 20, 2005
You need to erase that out and then select the ellipsis (...)(sp?) to open the 'vba code' window. The enter the docmd.maximize Edit: Or just do a seperate macro with the 'Maximize' command in it and call it on the on open event!
J JVermast Registered User. Local time Today, 04:54 Joined Jun 15, 2005 Messages 70 Jul 20, 2005 #5 That made more sense, thanks! (Ellipses)