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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Paradox Automation

Status
Not open for further replies.

mwoch

Programmer
Sep 21, 2005
7
GB
Hi Everybody,
I am looking for a documentation of Paradox Automation Server. Enybody can help me?

Regards
Marcin
 

Marcin,

Didn't know Paradox had an automation server. You might do better by asking in a Paradox-related forum. We're all VFP folk here.

I have used ODBC with Paradox if that's any help.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
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.

Regards
Marcin
 

Marcin,

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)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
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 seems to be gone... this is a link to the google cache: )

- Bill

Get the best answers to your questions -- See FAQ481-4875.
 
Thank you everybody for your help. A friend of mine sent me a link to OCX that allows me for this. Thank you again.

Marcin
 
If the OCX is publicly available, you may want to post a link here for future readers....

- Bill

Get the best answers to your questions -- See FAQ481-4875.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top