N
Nobody
Guy Gorton said:Glad you chipped in to this thread. I have been looking for someone
with Access expertise which your sig suggests you have.
In its simplest terms, the problem is that I have a large database on
Paradox. It works beautifully and I am amazed that the system loads
on to new Windows versions from the old 3 1/2 inch discs, so far
without problems, but that cannot last!
Main database with some 12,000 records, a number of related files,
lots of queries, some reports.
I have 2 or 3 smaller applucations on Paradox as well, but they are
not as important.
Is there a way of transferring the definitions to Access and the data?
Always assuming, of course, that Access is a relational database
engine.
I just checked with Access 2002, and one of the file formats that it can
open is Paradox. You can also access the data directly from ADO, see "Open
Paradox" in this article:
HOW TO: Use Jet OLE DB Provider 4.0 to Connect to ISAM Databases
http://support.microsoft.com/default.aspx?scid=kb;en-us;326548
From VB, you can use ADO's OpenSchema method to retrieve the list of
databases(adSchemaCatalogs), tables(adSchemaTables), and
fields(adSchemaColumns). I am not sure if it will work with Paradox
databases. See "OpenSchema method [ADO]" in MSDN, which includes VB sample.
You may also want to check this article:
How To Use the ADO OpenSchema Method in Visual Basic
http://support.microsoft.com/kb/186246