From: m galvin on 2 Apr 2010 11:16 How do I do this?
From: Dirk Goldgar on 2 Apr 2010 11:35 "m galvin" <mgalvin(a)discussions.microsoft.com> wrote in message news:7BE1B7CF-E57A-42D5-B103-8A48E657C0E5(a)microsoft.com... > How do I do this? In the form's Open event, execute the statement: DoCmd.Maximize Note that maximizing a form also maximizes any other (non-popup) forms and reports, so you may want to restore things when the form closes. In that case, you could use the form's Close event to execute the statement DoCmd.Restore You can also do the same thing using the corresponding macro actions, Maximize and Restore. -- Dirk Goldgar, MS Access MVP Access tips: www.datagnostics.com/tips.html (please reply to the newsgroup)
From: John W. Vinson on 2 Apr 2010 11:57 On Fri, 2 Apr 2010 08:16:05 -0700, m galvin <mgalvin(a)discussions.microsoft.com> wrote: >How do I do this? Open the form in design view and view its properties. On the Events tab select the Open event. Click the ... icon next to it and use the Macro Builder (or Code builder, if you prefer) to create a macro with only one step - Maximize. The macro wizard will help you. -- John W. Vinson [MVP]
|
Pages: 1 Prev: access Next: Always see Unbound list box borders when printing a form |