hi
I tried to compress my Access 2007 database like this:
System.Diagnostics.Process.Start(@"C:\Program Files\Microsoft Office\Office12\msaccess.exe",@"c:\Mydb.mdb /compact ");
In my C# program and I get this error:
You attempted to open a database that is already opened exclusively by user on machine . Try again when the database is available. (Error 3356)
I tried Conn.close()
but still get the error
Thanks in advance.