I want to get an access to Paradox tables (ver. 8.0) from external system. My system does not support ODBC, so the only way may be OLE Automation or OCX. I have found a component PdoxAuto 8.0, but I do not know how to use it.
You say your system doesn't support ODBC. That's surprising. All versions of Windows support ODBC, as do all versions of VFP. Is there something unusual in your system that doesn't support it?
As for PdoxAuto, if you don't have a Help file for it, you can try opening it in the object browser. That'll give you a guide to its properties and methods. Or use Intellisense to get the same info.
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
I don't have paradox, so I can't test any of these, but it looks like there might be an automation server that you can access by:
loX = CREATEOBJECT("Paradox.application")
Then see if you can use intellisense (or the object browser) to learn more about "loX"
Here's the page I found the "Paradox.application" reference on:
It also describes using DDE to manipulate Paradox. Even though the page is geared toward Delphi, VFP includes all the DDE functionality. Lookup "DDE Functions" in the VFP help to find DDEInitiate, DDEPoke, DDERequest, etc. It's not very hard to use.
Here's a more difficult method based on windows messages:
(The original page at
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.