To use the app logging I do the following,
To start logging to a file:
App.StartLogging <path to file>, vbLogToFile
To send information to the file:
App.LogEvent Message, vbLogEventTypeInformation
or
App.LogEvent Message, vbLogEventTypeError
To stop thye logging:
App.StartLogging <path to file>, vbLogOff
You can also log to the NT log event and I beleive a couple of other places, Just change the contant when you start logging.
Remember that this will only work outside the VB IDE. So if you run your project from VB no error logging will be done. Create the exe and run it outside Vb to see the logging.
Thanks and Good Luck!
zemp