Results 1 to 3 of 3

Thread: Calling an application to run [RESOLVED]

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Nov 2003
    Posts
    1,489

    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.

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    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:
    1. Process.Start("applicationName.exe")

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Nov 2003
    Posts
    1,489
    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
  •  



Click Here to Expand Forum to Full Width