A new Beta v1.3 of Ezy SQL has been released. New features include the Unformatter Wizard, which parses a formatted SQL string variable from the clipboard or a module selection into SQL text.
In Access, select a table and right-click. From the popup menu, click Create Shortcut...
In the Create Shortcut dialog, check the This Database is on the Network checkbox, and you can then copy the full UNC network path from the Full Network textbox.
Get more tips, samples, articles and code from the
A file association in Windows allows users to double-click a .reg file and then confirm the action, and merge the contents of the file into the local registry. So, for example, you would save the above entry in Notepad as a .reg file, and then double-click the file in Windows Explorer to update the Registry.
Caution: Back up the registry before making any changes.
Handy User Keyboard Shortcut
To re-enter a default value in a field: [Ctrl][Alt][Spacebar].
It is tricky creating a table in code, as some field properties are not in the default collection, for example, the Format property, and have to be created by the developer. The following procedure creates a new table and demonstrates how to add a field property if it does not exist:
Private Sub CreateLogTable() On Error GoTo Err_CreateLogTable
Dim db As DAO.Database Dim tdfLog As TableDef Dim idxLog As Index Dim idxLogID As Field Dim obj As Object Dim prp As Property
Const conPropNotFound As Integer = 3270
Dim strPathName As String Dim strTableName As String Dim strTimeFieldName As String
' Open the database 'strPathName = "database.mdb" 'Set db = OpenDatabase(strPathName) Set db = CurrentDb
strTableName = "tblLog"
' Create the table Set tdfLog = db.CreateTableDef(strTableName)
' Create the index field Set idxLog = tdfLog.CreateIndex("PrimaryIndex") With idxLog .Fields.Append .CreateField("LogID", dbLong) .Primary = True .Required = True End With
123 Global Error Handler Add-In Automatically adds global error-handling to all procedures in an .mdb and error-logging.
XML Explorer Add-In Explore XML documents with this Access Add-In. As XML documents are structured as trees of data, with this tool you can dig down into XML data using a Windows Explorer like interface.
Sticky Toolbar - an Access form-based Toolbar that moves with a form.
\New Access KB Articles
Due to the large number of articles (152: 121 new and 31 updates) this month they are listed here.
These updates have been incorporated into the FreeAccess KB Browser database, which now has over 2,380 article references.
This newsletter may contain links to sites or files on the Internet which are owned and operated by third parties. AAD CONSULTING is not responsible for the content of or files from 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 subscribe or unsubscribe from this mailing list, select a choice from combo-box below, enter your email address and click OK: