Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FoxPro fxp files

Tags:

foxpro

I know very little about FoxPro but have a project that requires working with a third-party application, based on FoxPro, and a .fxp file. The thrid-party app is a point of sale system and the makers of the software have provided a .fxp file that allows us to export product information into an XML format.

The problem that I am running into is that the software has no way to schedule the .fxp file to run at a regular interval which we need to keep that XML file updated.

My question is, can a .fxp file be executed outside of FoxPro?

Alternatively, can I create my own FoxPro application to execute their .fxp file and have it connect to the POS database to perform the export.

Any ideas or alternatives are welcome.

Thanks, Brian

like image 922
Brian Behm Avatar asked Sep 20 '25 01:09

Brian Behm


1 Answers

Write another FoxPro program and run it with "DO file.fxp" or import FXP file into a project, set it as startup and build.

like image 178
mmx Avatar answered Sep 23 '25 11:09

mmx