一般来说,在一个程序里调用其他程序,可以这样写:
uses Dos;
begin
  ......
  SwapVectors;
  Exec(文件名,'');
  SwapVectors;
  ......
end.

那如何让调用其他程序的时候,这个程序也在运行呢?[em18]