I am building an application (in vb6) that uses data from a third party application (written in foxpro)
The problem is that the foxpro program has a function to calculate taxes, and, its logic is complex enough
for writing it again in vb6. Plus, if the function changes in the future, I do not want to write fix the vb6.
What I need to do is, somehow, call this foxpro function from the vb6 program, and get it results.
Is there a way to do that?
I am building an application (in vb6) that uses data from a third party
Share
Whether you can call it that way depends on the FoxPro program. If it has a COM object you can instantiate, you have one option. Alternatively, if the application lets you pass parameters in to tell it what you want, that’s another possibility.
Is this an off-the-shelf application or a custom application? In other words, do you have source and the possibility of modifying it?
Tamar