Search results

  1. S

    How to Run Code upon database open???

    Does anyone know how to get code to run upon opening an Access database. I am about to start selling an Access MDE database I made, and I have some Enter Serial # and Registration # screens which come up when the database is first installed. However, I realized today that the user could just...
  2. S

    Icons and InstallShield - Can Anyone Help?

    Where I put it I already had a form that never gets seen by anyone that is the form that opens on startup - the event procedure for the form checks to see if the product has been registered and either brings up the registration form or brings up the main menu, again, fast enough to never be...
  3. S

    Icons and InstallShield - Can Anyone Help?

    Got it working - Thank you ghudson!! Essentially I just had to figure out how to properly set a property in my code. Thanks a million for the idea and sample code, ghudson! Here's the final code I'm using: Dim dbs As DAO.Database Set dbs = CurrentDb dbs.Properties("AppIcon") =...
  4. S

    Icons and InstallShield - Can Anyone Help?

    Getting there? I found a section in the help about setting and/or appending properties, but I can't get it to work. Dim dbs As DAO.Database Set dbs = CurrentDb dbs.Properties.Append (AppIcon) gives an "Object Required" error. AppIcon in quotes gives Type Mismatch. I think I'm really...
  5. S

    Icons and InstallShield - Can Anyone Help?

    Info FYI, I am using Windows 2000 and Office XP. Scott
  6. S

    Icons and InstallShield - Can Anyone Help?

    Almost works?? I tried the code you suggested and I get a "Sub or Function not defined" error, and the debugger highlights the SetProperties part of that line of code. (I tested the part of the code that gives the path of the icon, and it works beautifully). Code: SetProperties "AppIcon"...
  7. S

    Icons and InstallShield - Can Anyone Help?

    I have built an Access application, and using the Tools - Startup and setting the Icon field to a path and file on my computer works no problem, and the icon I specify replaces the standard Access icon. However, my company is about to start selling this application, and we are using...
Back
Top Bottom