I created an application in Access 2007. One of the features required
by the client is to create an .mdb file with one table in it for their
use (strange yes -- I provided alternate solutions, but their IT guy
insists). I use adox and the following line of code to do this:
cat.Create "Provider='Micr osoft.Jet.OLEDB .4.0';" & _
"Data Source='" & strPath & "'"
It works fine, but defaults to an access 2002-2003 format. I need the
database to be formatted for access 2000. I am currently going in and
manually changning it, but I wonder if there is a way to do this
programmaticall y. Any help is appreciated. Thank you.
by the client is to create an .mdb file with one table in it for their
use (strange yes -- I provided alternate solutions, but their IT guy
insists). I use adox and the following line of code to do this:
cat.Create "Provider='Micr osoft.Jet.OLEDB .4.0';" & _
"Data Source='" & strPath & "'"
It works fine, but defaults to an access 2002-2003 format. I need the
database to be formatted for access 2000. I am currently going in and
manually changning it, but I wonder if there is a way to do this
programmaticall y. Any help is appreciated. Thank you.
Comment