ASKER
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
ShellExecute(0,"open",'http://www.YourPage.com/index.html',"","",1)
Above command line invokes the default browser to which you may send whatever parameters you need in URL.ASKER
Visual FoxPro (VFP), and its predecessor FoxPro, is a data-centric, object-oriented, procedural, database programming language and IDE from Microsoft last released in 2007 that still has some active use due to its low cost of deployment and fairly rapid development. In 2008, Microsoft released a set of add-ons for VFP's xBase components to allow interoperability with various Microsoft technologies. It allows data processing against its native file-based data tables or database servers such as SQL Server.
TRUSTED BY
ASKER
Based on your reply it seens that the better way is trying to use web code that at a first sight is very
commonly found (PHP would be my choice) to do the heavy job as a web service.
Maybe the credit card, values and other informations could be consumed indirectly from the VFP app - it
saves this data at a local folder or send this information to a WEB endpoint, in a manner it could be
securelly used by the CC operator... just elucubrations.
A purelly web job is easylly to start.. but on my case the process must to start at VFP app.