in reply to Re: running a perl script via Shell() in MS-Access
in thread running a perl script via Shell() in MS-Access

..and make sure your perl5.8.0.exe is in path
  • Comment on Re: Re: running a perl script via Shell() in MS-Access

Replies are listed 'Best First'.
Re: Re: Re: running a perl script via Shell() in MS-Access
by Grygonos (Chaplain) on Jul 04, 2003 at 03:56 UTC
    I had the file in the same dir as the db.. and perl is in the path. I found out that using the START command opens a file using its associated program .. it worked fine... ill post the crappy vb code to do it monday...
      found it me thinks...seems to work by having silly Microstiff quoting like so:
      stAppName = """D:/Sirsi/Perl/Bin/perl5.6.0.exe"" " + " c:/work/abc.pl" Call Shell(stAppName, 1)
      Hope it works for you now