ACC: How to Open Multiple Instances of a FormLast reviewed: October 24, 1997Article ID: Q135369 |
The information in this article applies to:
SUMMARYModerate: Requires basic macro, coding, and interoperability skills. This article describes how you can open multiple instances of a form using Visual Basic for Applications. Opening multiple instances of a form gives you the flexibility to work on more than one record at once. For example in an Order Entry application, you can start taking an order, pause and take a second order, and then return to the first order, without losing any data. NOTE: This article explains a technique demonstrated in the sample files, FrmSampl.exe (for Microsoft Access for Windows 95 version 7.0) and FrmSmp97.exe (for Microsoft Access 97). For information about how to obtain these sample files, please see the following articles in the Microsoft Knowledge Base:
ARTICLE-ID: Q150895 TITLE : ACC95: Microsoft Access Sample Forms Available on MSL ARTICLE-ID: Q175066 TITLE : ACC97: Microsoft Access 97 Sample Forms Available on MSL MORE INFORMATIONThis article assumes that you are familiar with Visual Basic for Applications and with creating Microsoft Access applications using the programming tools provided with Microsoft Access. For more information about Visual Basic for Applications, please refer to your version of the "Building Applications with Microsoft Access" manual. The syntax for opening multiple instances of a form includes a Set statement, the keyword "New" (without the quotation marks), and a form reference, as in the following example:
Set x = New Form_Form1When you open multiple instances of a form, the original instance is the only form object that is stored permanently in the database. The other instances are temporary and are removed from memory once you close them. NOTE: When you close the original instance of a form, all other instances of the form are closed as well. To open multiple instances of a form, follow these steps. CAUTION: Following the steps in this example will modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and perform these steps on a copy of the database.
REFERENCESFor more information about using the keyword "New" with a Set statement, search for "Set," and then "Set Statement" using the Microsoft Access 97 Help Index.
|
Additional query words: copy copies duplicate
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |