Access Application

G

Guest

I have a start up form that when a user clicks a button it runs several
queries that clear table, append data, create tables and then launch a report.

Everything works fine on me desktop.

I send the database to someone else and he receives several message box
such as

cannot find the dsn
you are about to run a make table query
you are about to paste 70 records etc.

I have 2 tables that I am linking to from a sql server. When, I did the
link I checked the "save password" box. This works fine on my pc. I can
create a dsn on the user pc - unless I can do it in code?

I also tried to create an MDE file but the button is grayed out.

Any suggestions to make this database run without the user having to answer
all the message boxes is appreciated.

Thanks
 
G

Guest

for the confirmation messages add this before the queries start,
if using code:
docmd.setwarnings false

if using a macro:
-select setwarnings from macro action column, set to false (no) below
 
G

Guest

Some things at least to check:

-An *.mdb database to be converted to *.mde must be open
-The *.mdb database was created with the same version of access opening it,
lets say your database *.mdb file was created with Access 2000 nad now you
open the database with Access 2003, it wont let you create the mde, if this
is the case convert your database to the same version of access
-Compile your modules prior to converting to mde to make sure there are no
coding errors, if there is at least one, Acccess wont create an mde file,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top