freeaccess.cjb.net 
 

FreeAccess Newsletter No 2 - October 2001

  Free Access Tools and Databases AAD CONSULTING Sydney Australia_ | _Advanced Access Development
     
What's New at FreeAccess?

New domain freeaccess.cjb.net has been registered - aadconsulting.cjb.net still works

FreeAccess Access Add-Ins/Wizards

Ezy Documenter 4.3
The easy way to document Access databases.
Ezy Switchboard 1.2
The easy way to create and maintain Access switchboards.
Ezy Filter 1.01
Easily filter any dataform on the fly.
Ezy Reporter 1.01
Easily create complex reports in a variety of formats.
Smart Form Wizard 4.0
Now even smarter!
Build ready to run Access forms with navigation and autofiltering.

FreeAccess Access Databases

Virtual Hierarchy 1.1
A unique database application that allows you to create an unlimited virtual hierarchy.

 Phantom Microsoft Files - for subscribers only

Hard to find files that are no longer on the Microsoft web site - new files in each newsletter

Sample Databases
Access97 Query Samples Database
Access97 Reports Samples Database

White Paper
Using Default Collections to Shorten DAO Code

The extraction password for each zip file was included in the subscriber mailing of 8 October 2001.

 Downloads

Helen Fedemma's Home Page is a rich source of Access advice and sample databases.

 Code sample

List all the queries in your database
The following function prints to the immdiate window all the queries in your database, including SQL strings defined as form recordsources and as control rowsources.

Function QueriesList() As Boolean
On Error GoTo QueriesListErrorHandler

Dim db As Database
Dim qdf As QueryDef

Set db = CurrentDb

For Each qdf In db.QueryDefs

Debug.Print ""
Debug.Print "Name: " & qdf.Name
Debug.Print "Description: " & qdf.Properties("Description")
Debug.Print "Date Created: " & qdf.DateCreated
Debug.Print "Date Modified: " & qdf.LastUpdated
Debug.Print "SQL: "
Debug.Print qdf.SQL
Debug.Print "___________________________________________________________________________"
Next qdf

QueriesList = True

Exit Function
QueriesListErrorHandler:

If Err = 3270 Then
'Description property not found ie. there is no description for this query

Debug.Print "Description: na"
Resume Next

Else

QueriesList = False
MsgBox "Query Definition Error " & Err & ". " & Err.Description, , aad_THIS_APP
Exit Function

End If

End Function

 Useful links
Access Related Sites
Microsoft OfficeVBA.com
Access-Office-VB Advisor
 Coming soon at FreeAccess...

Table Warehouse Access Add-In
The ultimate source for pre-designed Access tables!

A new Access HRIS database application
A comprehensive leave and training tracker

A new version of the Project Management database
incorporating daily time management

New versions of:
Vizual Einstein
Web Tarantula 

Top
 
CONTENTS:
What's New
Phantom Microsoft files
Downloads
Code sample
Useful links
Coming soon...

Subscription to this newsletter is free.

This newsletter may contain links to sites on the Internet which are owned and operated by third parties. AAD CONSULTING is not responsible for the content of any such third-party site.

Any files are provided "as is", without warranty of any kind. AAD CONSULTING does not assume any liability for use or the consequences of use.

To unsubscribe from this mailing list, enter your email address:

Have questions or comments?
Send them to us.

Access is a trademark of Microsoft Corporation.

©2001 Anthony D'Ambra.
All rights reserved.

Top