Results 1 to 2 of 2

Thread: Start and Stop programs

  1. #1

    Thread Starter
    Member
    Join Date
    Jul 2002
    Posts
    32

    Start and Stop programs

    How can I start an external program (exe file) and how can a stop the running program i just started ?

  2. #2
    Your Ad Here! Edneeis's Avatar
    Join Date
    Feb 2000
    Location
    Moreno Valley, CA (SoCal)
    Posts
    7,339
    VB Code:
    1. Dim prc As Process
    2.  
    3. 'to start
    4. prc = New Process().Start("Notepad.exe")
    5.  
    6. 'to stop
    7. prc.Kill()

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