Iman
Iman

Reputation: 17

how to execute two exe files at the same time in delphi 7

I have two exe files and I want to run them at the same time. Is it possible to do it in delphi 7? I've searched it in the internet but I couldn't find any answer...

Upvotes: 0

Views: 655

Answers (2)

lkessler
lkessler

Reputation: 20132

Iman said in a comment:

NO, I run two exe files, the first one take some files and produce an output for each file. the second exe run at the same time and wait for output of the first one, so when the first exe file is working on second input the second exe is working on first output of first exe :) something like pipeline

What I would do then, is start the 2nd program first. It will then be ready for the output of the first one as soon as the output is produced and there will be no delay.

Upvotes: 2

Wug
Wug

Reputation: 13196

Just execute one, and then the other. It's very difficult to make computers do anything at exactly the same time, a millisecond apart shouldn't kill you.

Upvotes: 1

Related Questions