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())
Printable View
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())
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")
oh, cool. someone else posted a similar q just earlier. That was weird. Thanks a lot!!