How to open an application from another application

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sdanda
    New Member
    • Oct 2007
    • 36

    How to open an application from another application

    Hi,
    I am using vb.net.I would like to open an application from another applcation.
    For example now i am running sample applcation. In this application i am
    invoking some another applcation by using Process.Start(//application name) this. What i want to do is I need to close my sample applcation after opening this new pplcation.How to do this?Can anyone tell me?
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    So you want to start a different application and close your current one?
    [code=vbnet]
    Process.Start(//application name)
    Me.Close()
    'if that doesn't work, try this one
    Application.Exi t()
    [/code]

    Comment

    Working...