Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Run an application, wait for it to close then run another application...  (Read 2351 times)

0 Members and 1 Guest are viewing this topic.

digitaldude

    Topic Starter


    Newbie

    Hi,

    Sorry if this has been asked before - I have searched and looked through posts and can't see anything similar.

    What I would like to do is run a standard 32bit application, and once the app closes I would like a different app to run immediately after (maybe pausing for a minute or so to make sure the previous app has closed completely)

    Thanks for any help... :)

    BC_Programmer


      Mastermind
    • Typing is no substitute for thinking.
    • Thanked: 1140
      • Yes
      • Yes
      • BC-Programming.com
    • Certifications: List
    • Computer: Specs
    • Experience: Beginner
    • OS: Windows 11
    in a batch file..
    Code: [Select]
    start /WAIT <first program>
    start /WAIT <second program>
    I was trying to dereference Null Pointers before it was cool.

    digitaldude

      Topic Starter


      Newbie

      Thanks very much, I didn't realise that it was so simple!  :)