|
-
Dec 16th, 2003, 02:44 PM
#1
Thread Starter
Junior Member
Access Project Problem
Hi!
I have an access project open, and if the PENDING command button is clicked, it needs to close the current access project and open another(which has its own set of forms and tables). Does anybody have an idea how to do this.
-
Dec 16th, 2003, 05:14 PM
#2
To close the current project use END then use SHELL to open the new project.
-
Dec 17th, 2003, 11:04 AM
#3
Thread Starter
Junior Member
Does access 2000 have END and SHELL commands. I never knew that..Could you give me an example as how to do that
-
Dec 17th, 2003, 01:55 PM
#4
Thread Starter
Junior Member
Does access 2000 have END and SHELL commands. I never knew that..Could you give me an example as how to do that
-
Dec 18th, 2003, 03:40 AM
#5
You'll need to open the second app before the END command otherwise the first app will be closed and the SHELL command will not be run.
VB Code:
Private Sub Command1_Click()
Shell "C:\SecondApp.exe"
End
End Sub
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
|