Results 1 to 11 of 11

Thread: Installing my program that uses an Access databse on comupter with no access... help!

  1. #1

    Thread Starter
    Hyperactive Member Trojan's Avatar
    Join Date
    Dec 2003
    Location
    Area 51
    Posts
    280

    Unhappy Installing my program that uses an Access databse on comupter with no access... help!

    What do I need to put on a computer with no access or office installed, to make my program to work?

    my program reads and write to an access database...

    thanks in advanced.
    MD5How To Detect Disk In Drive X?Time Tickerchanging the owner of a controlSystray HardCore

    • "Programming is like sex: one mistake and you have to support it for the rest of your life."
    • "A program is a spell cast over a computer, turning input into error messages."
    • "WARNING: Keyboard Not Attached. Press F10 to Continue."
    • "Why doesn't DOS ever say 'EXCELLENT command or filename!'"

  2. #2
    PowerPoster lintz's Avatar
    Join Date
    Mar 2003
    Location
    The 19th Hole
    Posts
    2,697

    Re: Installing my program that uses an Access databse on comupter with no access... help!

    Your users won't need access installed as one of my apps uses access as the database and a lot of them don't have access installed but can still use my app.

  3. #3

    Thread Starter
    Hyperactive Member Trojan's Avatar
    Join Date
    Dec 2003
    Location
    Area 51
    Posts
    280

    Re: Installing my program that uses an Access databse on comupter with no access... h

    Well... That's is where is think you are wrong!

    VB is refernced in my project to:

    Microsoft ActiveX Data Objects 2.6 Liberary

    My program can't run on other computer that doesn't have this component installed....

    So what Do I need to install in order to make My app work on a compter that has no access installed?

    what files do I need to install on the other computer?
    MD5How To Detect Disk In Drive X?Time Tickerchanging the owner of a controlSystray HardCore

    • "Programming is like sex: one mistake and you have to support it for the rest of your life."
    • "A program is a spell cast over a computer, turning input into error messages."
    • "WARNING: Keyboard Not Attached. Press F10 to Continue."
    • "Why doesn't DOS ever say 'EXCELLENT command or filename!'"

  4. #4
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Installing my program that uses an Access databse on comupter with no access... h

    Quote Originally Posted by Trojan
    Well... That's is where is think you are wrong!

    VB is refernced in my project to:

    Microsoft ActiveX Data Objects 2.6 Liberary

    My program can't run on other computer that doesn't have this component installed....

    So what Do I need to install in order to make My app work on a compter that has no access installed?

    what files do I need to install on the other computer?
    Without knowing what controls your program uses, this is impossible to answer. However, if you bundle your application in an installation package, then the installer should be able to tell what files are needed, and package them for you.

  5. #5

    Thread Starter
    Hyperactive Member Trojan's Avatar
    Join Date
    Dec 2003
    Location
    Area 51
    Posts
    280

    Re: Installing my program that uses an Access databse on comupter with no access... h

    What if I don't want to use Package & Deployment Wizard?

    Any idea on how to get the list of files needed to be installed?
    MD5How To Detect Disk In Drive X?Time Tickerchanging the owner of a controlSystray HardCore

    • "Programming is like sex: one mistake and you have to support it for the rest of your life."
    • "A program is a spell cast over a computer, turning input into error messages."
    • "WARNING: Keyboard Not Attached. Press F10 to Continue."
    • "Why doesn't DOS ever say 'EXCELLENT command or filename!'"

  6. #6
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Installing my program that uses an Access databse on comupter with no access... h

    Quote Originally Posted by Trojan
    What if I don't want to use Package & Deployment Wizard?

    Any idea on how to get the list of files needed to be installed?
    I like this better, and it is free. Inno Installer

  7. #7

    Thread Starter
    Hyperactive Member Trojan's Avatar
    Join Date
    Dec 2003
    Location
    Area 51
    Posts
    280

    Re: Installing my program that uses an Access databse on comupter with no access... h

    Thanks Hack, but how do I add my project to It?

    how do I get the list of files needed to pack withe the exe?
    MD5How To Detect Disk In Drive X?Time Tickerchanging the owner of a controlSystray HardCore

    • "Programming is like sex: one mistake and you have to support it for the rest of your life."
    • "A program is a spell cast over a computer, turning input into error messages."
    • "WARNING: Keyboard Not Attached. Press F10 to Continue."
    • "Why doesn't DOS ever say 'EXCELLENT command or filename!'"

  8. #8
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Installing my program that uses an Access databse on comupter with no access... h

    Quote Originally Posted by Trojan
    Thanks Hack, but how do I add my project to It?

    how do I get the list of files needed to pack withe the exe?
    Download what you need, and run it. It will walk you through the process of creating an installation package. Did you look at these FAQs

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

    Re: Installing my program that uses an Access databse on comupter with no access... help!

    Trojan,

    Start with ********** , this will scan your VBP file and get all the files that you need and create a script for Inno Setup.

  10. #10
    old fart Frans C's Avatar
    Join Date
    Oct 1999
    Location
    the Netherlands
    Posts
    2,926

    Re: Installing my program that uses an Access databse on comupter with no access... help!

    If you don't want to use an installer, you would need to install at least MDAC_Typ.exe version 2.6 for your ADO reference, and because MDAC doesn't include the Jet driver anymore (since version 2.6), you would have to install this one seperately. You can download it from Microsoft.

    And if the vb runtimes haven't been installed yet, you would need MSVBVM60.dll as well.

    Depending on other references you used, there might be more files needed.
    Frans

  11. #11

    Thread Starter
    Hyperactive Member Trojan's Avatar
    Join Date
    Dec 2003
    Location
    Area 51
    Posts
    280

    Re: Installing my program that uses an Access databse on comupter with no access... h

    randem, U Da Man!!!

    ********** Rocks!

    My Program Works great now without any access installed on the other computer.


    Thank!
    MD5How To Detect Disk In Drive X?Time Tickerchanging the owner of a controlSystray HardCore

    • "Programming is like sex: one mistake and you have to support it for the rest of your life."
    • "A program is a spell cast over a computer, turning input into error messages."
    • "WARNING: Keyboard Not Attached. Press F10 to Continue."
    • "Why doesn't DOS ever say 'EXCELLENT command or filename!'"

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