in reply to Launching a data file in Win32 using the assciated application automatically

No need to dig through the registry ....
#perl -w my @cmd = qw{start foo.txt}; system(@cmd);
if you don't want to return to the perlprogram, use exec instead of system.
  • Comment on Re: Launching a data file in Win32 using the assciated application automatically
  • Download Code

Replies are listed 'Best First'.
Re: Re: Launching a data file in Win32 using the assciated application automatically
by tinypig (Beadle) on May 04, 2003 at 17:30 UTC
    That's the ticket. Thanks very much!