We're using a VFP9 "wrapper" program to call an older fox2.6 stand-alone executable from the command-line in the new version. This program works fine for some and we can call the program straight from windows by double-clicking just fine. Strangely, we get a message that foxtools.fll can't be found when doing this on some machines. If we ignore the error it seems to work fine from there.
The fox2.6 version is in the foxpro search path on all machines, we tried putting it right with the called exe and even in the current working directory as per below.
Our config.fpw files all look like this:
We've checked our windows search paths and they're not appreciably different either.
Can someone think of a reason we're getting this error?
Thanks in advance
The fox2.6 version is in the foxpro search path on all machines, we tried putting it right with the called exe and even in the current working directory as per below.
Code:
lccurdir=fullpath(curdir())
cmd="copy file x:\programs\foxtools.fll to "+(lccurdir)+"foxtools.fll"
&cmd
[b]run /n x:\programs\program_name[/b]
erase foxtools.fll
Our config.fpw files all look like this:
Code:
KEYCOMP = WINDOWS
BELL=OFF
PATH=X:\PROGRAMS;c:\fpw26;"C:\PROGRAM FILES\MICROSOFT VISUAL FOXPRO 9"
CENTURY=ON
CATMAN=OFF
ODOM=5000
TMPFILES=d:\TEMP
We've checked our windows search paths and they're not appreciably different either.
Can someone think of a reason we're getting this error?
Thanks in advance