in reply to Launching an .exe file from Perl
You'll get one instance of isql.exe instead of 2. The second instance won't start up until the first one exits. What you need to do is this:system("isql /Speterj /Usa /Pas_if"); system("isql /Speterj_build /Usa /Pas_if");
For most Win32 Gui apps, system() returns as soon as the program is launched. --Shoeboysystem("start isql /Speterj /Usa /Pas_if"); system("start isql /Speterj_build /Usa /Pas_if");
|
|---|