Results 1 to 2 of 2

Thread: how to deploy MS access

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2007
    Posts
    10

    how to deploy MS access

    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.

  2. #2
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    Re: how to deploy MS access

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width