PDA

Click to See Complete Forum and Search --> : how to deploy MS access


akhil_s
May 22nd, 2007, 06:39 AM
Hi,
I am trying to deploy my vb project using inno setup.
But i don't how to deploy with access.

In my project I gave connection string
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=db1.mdb;Persist Security Info=False

But after installation not working properly... I.e., as in start up not linking.(i not cleraly understand how 2 deploy for startup.)

Is my connection is Right? how to deploy the application is also visible at startup and shortcut on desktop.

I have no idea about this. Please give me step-by-step like teacher.

randem
May 22nd, 2007, 05:05 PM
Your connection is correct except for one issue. You should include the databas e path so that your app can always find it.

Constr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\db1.mdb;Persist Security Info=False"

BTW Lets see your script. You probably did not deploy all the dependencies that you needed.