|
-
Dec 21st, 2003, 11:34 PM
#1
Thread Starter
Frenzied Member
Calling an application to run [RESOLVED]
is this the correct line to use when you need to start another application? does the keyword "NEW" indicate which routine to start with?
Code:
Application.Run(New TreeViewCtl())
Last edited by Andy; Dec 29th, 2003 at 03:21 AM.
-
Dec 22nd, 2003, 01:49 PM
#2
Sleep mode
another application ? no . You might need to use that if you are starting your application from a module Main sub . It accepts some different parameters like a form (to show when the application is run)...etc
If you want to start different application , simply use this :
VB Code:
Process.Start("applicationName.exe")
-
Dec 22nd, 2003, 11:27 PM
#3
Thread Starter
Frenzied Member
oh, cool. someone else posted a similar q just earlier. That was weird. Thanks a lot!!
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
|