In the button click event i want to open another form that i have in the database.
I have tried
Dim newform As NewForm05
newform.visible = true
there is no .show or .open methods available to me
Printable View
In the button click event i want to open another form that i have in the database.
I have tried
Dim newform As NewForm05
newform.visible = true
there is no .show or .open methods available to me
is this VBA?
you can use the DoCmd method:
VB Code:
DoCmd.OpenForm "FormName", acNormal
how can i close the form..... i dont want to set the visible to false
using the same method:
VB Code:
DoCmd.Close acForm,"FormName"