I am after the form specification data - all the parameters you would type in in the design view for a form.
I have used jackess to access the .mdb file.
I fiddled with permissions on MSysObjects table and made it public and was able to access the data.
I found that the form information was present but it was an OLE field.
Dumping that data gave me some OLE data - but it was clearly a reference - something i have no idea how to continue with in java - the language I used.
I find it hard to imagine that I am the only person that would like to extract this information yet i've not found any tools or strategies on how to extract the form information from access.
Anyone have any suggestions or recommendations?
You are probably the only one, because that information is useless without Access.
Still, you can, though with the help of Access, export those data with the VBA command:
SaveAsText acForm, "TheFormName", "d:\path\TheFormName.txt"
acForm
is an integer constant having the value of 2.