Making a log file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you make a log file in Access vba? I want to log certain
characteristics when running an Access 2003 query. (Specifically I need to
know if the returned data contains any tab characters and I want that logged
to a file.) The vb logmode and logpath property, or the startlogging method
don't seem to come up in the intellisnse for the Application object. Do I
need a reference to something in the References dialogue box?
 
One approach is to use the FileSystemObject associated with the Microsoft
Scripting Runtime reference. You can create and manipulate files using this
approach.

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


How do you make a log file in Access vba? I want to log certain
characteristics when running an Access 2003 query. (Specifically I need to
know if the returned data contains any tab characters and I want that logged
to a file.) The vb logmode and logpath property, or the startlogging method
don't seem to come up in the intellisnse for the Application object. Do I
need a reference to something in the References dialogue box?
 
Back
Top