ACC1x: How to Run MS Access Wizards or Open the WIZARD.MDA FileLast reviewed: June 8, 1997Article ID: Q104569 |
The information in this article applies to:
SUMMARYYou can cause the Microsoft Access Wizards to run by calling the zwWizMain() function that is defined in the zwUI module of the WIZARD.MDA file.
MORE INFORMATIONThe zwWizMain() function is declared as
Function zwWizMain (<szTable> As String, ByVal <fReport> As Integer)where <szTable> is a string value that is the name of an existing table or query in the open database, and <fReport> is a Boolean value. The value for <fReport> is either 0 or 1. Zero will open the FormsWizard, and 1 will open the ReportWizard. You can also open the WIZARD.MDA file in Microsoft Access in order to view the code used by the FormsWizard and ReportWizard. To open the WIZARD.MDA file, do the following:
?zwWizMain ("My Table", False)NOTE: You will not be able to run the Wizards as you would normally while the WIZARD.MDA file is open. To run the Wizards normally, you need to remove the change made to the MSACCESS.INI file in step 3 above, and then restart Microsoft Access.
|
Additional query words: zwinitwizard
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |