If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Access > Sloppy Snippets

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-25-07, 01:37
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Sloppy Snippets

You can ignore these posts.

These posts have no questions but contains what I call: "Sloppy MSAccess Snippets". They are little coding snippets or an application I've designed where I need to get some part of the code to use in another application. Some are little coding snippets, some are works-in-progress, and some are applications I've designed for some purpose.

** These examples are NOT documented and often contains commented out code which I've tried and found did not work.

They are not thoroughly qc'd to put in the MSAccess Code Bank but I wanted a place where I can go to download a piece of code I've done on a project to the computer I'm working on or share it with others (ie..izyrider).

I called this post "Sloppy Snippets" because that's what they are - sloppy. Plus I can quickly find this set of posts by the title to grab anything needed.

Feel free to upload any example code you might be working on in this set of threads without having to comment the code! All code examples are AS IS and are NOT necessarily guaranteed to be the best approach to use! There also is no assurance needed that any of the code will work! Nor is there any suggestion that the coding used is the best approach! Again, documentation, answering questions, critiquing the code, and explaining what the upload does is not the purpose of this set of threads. If you should download any of the examples in these posts, it should be understood that you have some coding experience to figure out what the code does without any comments or questions and that no guarantee is made that the code will work for you in your situation.

Several examples also have linked SQL Server tables in them (which I often work with.) This means that if you try to look at the data in the tables, you won't see it. The code also will not work until you convert the SQL Server tables to Access tables. You will need to open it using the Shift Key for the Access examples with SQL Server linked tables. The focus in these examples is not seeing the data in the table but grabbing some piece of code to do some purpose with again, the understanding that you can decipher what the code does and that you can determine if it's the best approach to use.

Lastly, attached to this post is a collection of dozens of word documents which I've zipped. Each worddoc show code to do a certain thing (ie...get last day of month, get first day of month, bypass autoexec, get age, etc...)
Attached Files
File Type: zip WordDocsGoodSampleCode.zip (261.5 KB, 125 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)

Last edited by pkstormy; 08-25-07 at 12:53.
Reply With Quote
  #2 (permalink)  
Old 08-25-07, 01:40
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Bug Fix Tracking Example

The attached is an example of a Bug/Fix tracking example.
Attached Files
File Type: zip BugFixTrackingExample.zip (738.5 KB, 84 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)

Last edited by pkstormy; 08-25-07 at 01:49.
Reply With Quote
  #3 (permalink)  
Old 08-25-07, 01:47
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
CheckLog tracking Example

The following is an example of a checklog tracking system.
Attached Files
File Type: zip CheckLoggingExample.zip (82.1 KB, 94 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #4 (permalink)  
Old 08-25-07, 01:48
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Emailing Example

The attached is an example of an emailing with Outlook program.
Attached Files
File Type: zip EmailingExample.zip (18.5 KB, 86 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #5 (permalink)  
Old 08-25-07, 01:50
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Event Scheduling example

The attached is an example of an event scheduling/tracking program.
Attached Files
File Type: zip EvenSchedulingExample.zip (54.4 KB, 95 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #6 (permalink)  
Old 08-25-07, 01:52
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Export Example

The attached is an example of an exporting routine.
Attached Files
File Type: zip ExportExample.zip (524.1 KB, 85 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #7 (permalink)  
Old 08-25-07, 01:55
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
LogOut script (vbscript)

The attached is an example of a logout script (ie.. it Grabs the loginID and it updates a status field to a sql server table connected to in the vbscript.)
Attached Files
File Type: zip LogoutScript.zip (452 Bytes, 75 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #8 (permalink)  
Old 08-25-07, 01:57
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
One Access Instance

The attached MSAccess file has a module in it which can be used to detect if the user tries to open the same Access file twice.
Attached Files
File Type: zip OneAccessInstance.zip (33.0 KB, 88 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #9 (permalink)  
Old 08-25-07, 01:58
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Outlook connection example

The attached example lets you schedule appointments in Access where you can write that schedule item directly into Outlook.
Attached Files
File Type: zip OutlookConnectionExample.zip (43.4 KB, 79 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #10 (permalink)  
Old 08-25-07, 02:02
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Pre-Post Checkwriting example

The attached is a check-generating example. It queries off of a measure type system and it will take the stored $ and convert it to a "check" written format.
Attached Files
File Type: zip PrePostCheckWritingExample.zip (918.0 KB, 85 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #11 (permalink)  
Old 08-25-07, 02:03
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Progress bar example

The attached is an example of a progress bar.
Attached Files
File Type: zip ProgressBarExample.zip (20.7 KB, 86 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #12 (permalink)  
Old 08-25-07, 02:04
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Training example

The attached is a training example.
Attached Files
File Type: zip TrainingExample.zip (930.8 KB, 100 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #13 (permalink)  
Old 08-25-07, 02:07
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Whos In and whos out example

The attached is an example of tracking who's in and who's out in a company. Users can quickly mark if they are in or out and it can easily be viewed by others.
Attached Files
File Type: zip WhosInOutExample.zip (330.0 KB, 85 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #14 (permalink)  
Old 08-25-07, 02:19
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
Room scheduling example

The attached is an example of a room scheduling/reservation program.
Attached Files
File Type: zip RoomSchedulingExample.zip (1.28 MB, 111 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)
Reply With Quote
  #15 (permalink)  
Old 08-25-07, 02:21
pkstormy pkstormy is offline
Moderator
 
Join Date: Dec 2004
Location: Madison, WI
Posts: 3,925
SendInfo Call log program

The attached is an example of a call log tracking and sending information/brochures program.
Attached Files
File Type: zip SendInfoCallLogExample.zip (1.44 MB, 88 views)
__________________
Expert Database Programming
MSAccess since 1.0, SQL Server since 6.5, Visual Basic (5.0, 6.0)

Last edited by pkstormy; 08-25-07 at 13:14.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On