Access VBA generate .accde
-
From an Access application, I am trying to generate a ".accde" file using VBA from a ".accdb" file. I´m using the "app.SysCmd 603, INPATH, OUTPATH" method, but always returns 0 and do not works.
Any idea how to fix it?
-
From an Access application, I am trying to generate a ".accde" file using VBA from a ".accdb" file. I´m using the "app.SysCmd 603, INPATH, OUTPATH" method, but always returns 0 and do not works.
Any idea how to fix it?
File/Save As/Save Database as/Make ACCDE
========================================================= I'm an optoholic - my glass is always half full of vodka. =========================================================
-
File/Save As/Save Database as/Make ACCDE
========================================================= I'm an optoholic - my glass is always half full of vodka. =========================================================
Obviously I can do it so, but I need to do it through VBA code to automate the process.
-
Obviously I can do it so, but I need to do it through VBA code to automate the process.
Make sure that your database has no code errors (go into a VB code module and run Compile from the Debug menu) - you cannot create an executable database if there are any code errors
========================================================= I'm an optoholic - my glass is always half full of vodka. =========================================================
-
Make sure that your database has no code errors (go into a VB code module and run Compile from the Debug menu) - you cannot create an executable database if there are any code errors
========================================================= I'm an optoholic - my glass is always half full of vodka. =========================================================
Thanks, it was a stupid mistake when compiling the application. Now everything works perfectly.