Sounds like you want a script which calls the first program and then when the first finishes, it calls the second program.
Something like
program1
program2
EDIT: To run the two tasks in parallel you can do
program1 &
program2
in a bash/unit shell.
or in dos shell
start program1
program2