making a MDE file

  • Thread starter Thread starter csumb
  • Start date Start date
C

csumb

when i try to create a MDE file i get the following error message. Can anyone
help or point me to someone who can?

Thanks

This error is usually associated with compiling a large database into an MDE
file. Due to the method used to compile the database, a considerable number
of TableID references are created for each table. The Microsoft Jet database
engine version 4.0 can only create a maximum of 2048 open TableIDs at one
time. Exporting a database as an MDE potentially can exceed this limit if
the database has a large number of objects (table, macro, form, report, etc).
There is no accurate method to estimate the number of TableIDs the Jet
database engine uses during the process of compiling a database as an MDE.
However, each VBA module and each form uses one TableID, as a result, if the
database has 500 forms, and each form's HasModule property is set to Yes, as
many as 1,000 TableIDs are used.
 
Although it appears that 2007 will make an mde file from a 2003 formatted mdb
file.

I had this problem too, but as soon as I cleaned up a couple of code
segments that didn't compile properly, it worked OK.

--
HTH
Dale

Don''t forget to rate the post if it was helpful!

email address is invalid
Please reply to newsgroup only.
 
I checked and it has been convertied to 2003,
But it still will not work i still get the same error message, any other
Ideas?

thanks
 
Did you confirm that it will compile?

In the VBA editor window, select the Debug -> Compile menu option. If it
doesn't compile, it will highlight the code segment that is failing. Keep
doing this until it compiles completely (the Compile option will be disabled
when it has compiled properly). Then try making the mde again.

Dale
 
Yes that did it thank you very much
after i compiled and made it into a mde file
how do i get rid of the tool bar at the top?
 
Back
Top