Access File format

A

Amit Parashar

Hi,

Is there a MS Access file format available? I would like to create a
utility to parse ms access forms and reports and convert them to ASP.

Thanks

Amit
 
D

Douglas J. Steele

Nope: Microsoft has not released the file format. If you want to parse the
forms and reports, you'll have to do it using Access.
 
T

Tony Toews

Amit Parashar said:
Is there a MS Access file format available? I would like to create a
utility to parse ms access forms and reports and convert them to ASP.

The closest out there is the MDB Tools which is a set of libraries and
utilities to facilitate exporting data from MS Access databases (mdb
files) without using the Microsoft DLLs. In other words they are
reverse engineering the layout of the MDB
file.http://mdbtools.sourceforge.net/

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
 
D

david epsom dot com dot au

To save the Report design as text :

Set cnt = dbs.Containers("Reports")
For Each doc In cnt.Documents
Application.SaveAsText acReport, doc.Name, sFolder & doc.Name & ".ACR"
Next doc

'ACR' is the extension used by Source Safe for reports. 'ACF' is the
extension used for forms.

(david)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top