A
acss
I have a command button on my form that i am trying to hide the current form
Orders then open form Orders2:
Private Sub cmd_OpenForm()
Me.Visible = False
DoCmd.OpenForm "Orders2", , , , , acDialog
Me.Visible = True
End Sub
The orders2 form is a copy of Orders with a default value in a country field
set to EC and the code above does not perform the closing of one and opening
of the other. Can someone assit please?
Orders then open form Orders2:
Private Sub cmd_OpenForm()
Me.Visible = False
DoCmd.OpenForm "Orders2", , , , , acDialog
Me.Visible = True
End Sub
The orders2 form is a copy of Orders with a default value in a country field
set to EC and the code above does not perform the closing of one and opening
of the other. Can someone assit please?