Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Linking icon to Access db
Name: rohnds Date: June 15, 2007 at 15:19:26 Pacific OS: WinXP CPU/Ram: 1 Product: Intel
Comment:
I have a small database that I created using MS Access and I want to distribute this among my friends (aquarium enthusiasts). So I created EXE file using WinZip 11.0.
When the users unzip the files, database and other files (such as photos, icon and help file) are written to a new sub directory.
I want to make this a little more professional. I want to be able to create a icon on my desktop and link that to the database automatically when they unzip. How can I accomplish this?
Name: Razor2.3 Date: June 17, 2007 at 18:29:23 Pacific
Reply:
Can you run a program when the unzipping finishes? If so, save this .vbs and have the unzipper run it:
With CreateObject("WScript.Shell") With .CreateShortcut(.SpecialFolders("Desktop") & "\Database.lnk") .TargetPath = "database.mdb" .WorkingDirectory = CreateObject("Scripting.FileSystemObject").GetFolder(".").Path .IconLocation = "icon.ico" .Description = "I'm a shortcut, yo" .WindowStyle = 1 .Save End With End With
Summary: i'm trying to figure out the code to add an import-from-excel option that will place data in its correct fields as seen in the following pic of the access db i am using: http://i10.tinypic.com/52nz98n...
Summary: Hi, I coded a c program (mysqlc.c) to access the mysql database and dump the results. The program is given below. ============================================= #include <mysql.h> #include <stdio...