Convert accdb to accde

pekajo

Registered User.
Local time
Tomorrow, 02:39
Joined
Jul 25, 2011
Messages
135
Can you help I have a FE_ and BE_ database and have tried to convert the FE_ to accde and all I get is Unable to convert message from the helpful MS team :).
Can someone help on the possible reasons.
Thanks
Peter
 
Usually this occurs because you cannot compile the code without error. If you have a module that you never actually call, your app could probably run - but if it can't be compiled cleanly, no .ACCDE will be produced.

Try to manually compile the code and see if it gives you an error. (In the VBA code pages, Compile is under Debug in the menu bar as a dropdown. If you can't compile, you are stuck.

So try that compilation and work on eliminating the errors.
 
before you can "know" why the compile fails.
on each report/form module, if it has a code, add to the beginning:

Option Explicit

add also the directive you all your modules/udf-class.
 

Users who are viewing this thread

Back
Top Bottom