Help!

AngelicaMiranda

Registered User.
Local time
Tomorrow, 05:36
Joined
Nov 30, 2011
Messages
20
Opening another form using command button?
 
Here is one solution....

To open form "NewF" by clicking on button "NewB", use the following event procedure:

Private Sub NewB_button_Click()
DoCmd.OpenForm ("NewF")
End Sub

:)
 

Users who are viewing this thread

Back
Top Bottom