Win32::Process works, but I'd have to know the full path to excel.exe.
That's not hard to find.
use File::Spec; sub find_in_path { my $prog = shift; my $fmm; for my $d (File::Spec->path()) { $fnm = File::Spec->catfile($d,$prog); last if -x fnm; $fnm = undef; } return $fnm; } my $excel = find_in_path('excel.exe');
| 90% of every Perl application is already written. ⇒ |
| dragonchild |
In reply to Re^3: subprocess delay on Windows with Perl/Tk
by pfaut
in thread subprocess delay on Windows with Perl/Tk
by kgoess
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |