|
-
Apr 6th, 2005, 05:22 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] Open Form
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
Barry
Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
.NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0
SQL Server 2005/2000/SQL Server CE 2.0
If you like, rate this post
Compact Framework for Beginners
-
Apr 6th, 2005, 07:35 AM
#2
Addicted Member
Re: Open Form
is this VBA?
you can use the DoCmd method:
VB Code:
DoCmd.OpenForm "FormName", acNormal
if you fail to plan, you plan to fail
-
Apr 6th, 2005, 08:43 AM
#3
Thread Starter
Fanatic Member
Re: Open Form
how can i close the form..... i dont want to set the visible to false
Barry
Visual Studio .NET 2008/Visual Studio .NET 2005/Visual Studio .NET 2003
.NET Framework 3.0 2.0 1.1/ASP.Net 3.0 2.0 1.1/Compact Framework 1.0
SQL Server 2005/2000/SQL Server CE 2.0
If you like, rate this post
Compact Framework for Beginners
-
Apr 6th, 2005, 09:51 AM
#4
Addicted Member
Re: Open Form
using the same method:
VB Code:
DoCmd.Close acForm,"FormName"
if you fail to plan, you plan to fail
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|