Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

frx2word - app not found

Status
Not open for further replies.

asm338s

Programmer
Jul 16, 2001
135
US
I am using this program that I downloaded from Universalthread.com that converts foxpro reports to word documents.
At first I was doing this:

oF2W=NEWOBJECT("frx2word","msoexp")
oF2W.SaveFolder="C:\testword\"
oF2W.DOC_FileName="Wordout.doc"
oF2W.ReportHome="C:\MyApp" && Optional (new to 1.5)
nSuccess=oF2W.ReportForm("TestRep")

This workd but not all the time. I get some errors when complex joins are used. Sometimes it cannot find the tables used.

Ramani suggested the following:

DO frx2wrd.app WITH myRptFile, myWordFile

I tried this, but I get an error saying frx2word.app not found.

Any ideas? Thanks

Also check: thread184-203925
 
ASM,
Try qualifying the full path to the FRX2WORD application. Something like:

DO C:\WINDOWS\Plugins\frx2wrd.app WITH myRptFile, myWordFile

Where the "C:\WINDOWS\Plugins\" would be replaced with the exact location of your FRX2WRD application. Also, are you certain that the FRX2WRD is a .APP, and not a .EXE? That would also make a difference.

Thanks,
-Scott

s-) Please let me know if this has helped s-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top