NOTE: This article explains a technique demonstrated in the sample file, FrmSmp00.mdb. For information about how to obtain this sample file, please see the following article in the Microsoft Knowledge Base:
233324 ACC2000: Microsoft Access 2000 Sample Forms Available in Download Center
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
The following steps demonstrate how to use a command button to hide and display a form.Using a Macro
- Open the sample database Northwind.mdb.
- Create the following new macro, and then save it as Toggle Macro:
Macro Name Action ------------------------ Toggle Macro SetValue Toggle Macro Actions -------------------------------------------------- SetValue Item: [Quarterly Orders Subform].Visible Expression: Not [Quarterly Orders Subform].Visible
- Open the Quarterly Orders form in Design view.
- Set the AllowEdits property of the form to Yes.
- Add a command button to the detail section on the form.
- Set the following properties for the command button:
Caption: Toggle Subform OnClick: Toggle Macro
- View the form in Form view. Note that when you click the command button, the Quarterly Orders subform is hidden or displayed.
Using a User-Defined Function
- Open the sample database Northwind.mdb.
- Open the Quarterly Orders form in Design view.
- Set the AllowEdits property of the form to Yes.
- Add a command button or toggle button to any open area on the form.
- Set the following properties for the command button:
Set the OnClick property of the command button to the following event procedure:
Name: cmdToggle Caption: Toggle Subform OnClick: [Event Procedure]
Sub cmdToggle_Click() Me![Quarterly Orders Subform].Visible = _ Not Me![Quarterly Orders Subform].Visible End Sub
- View the form in Form view. Note that when you click the toggle button, the Quarterly Orders subform is alternatively hidden and displayed.