Writing Information to a Textual Error Log File : Error « Language Basics « VBA / Excel / Access / Word






Writing Information to a Textual Error Log File

 
Sub LogErrorText()
    Dim intFile As Integer

    'Store a free file handle into a variable
    intFile = FreeFile

    'Open a file named ErrorLog.txt in the current directory
    'using the file handle obtained above
    Open CurDir & "\ErrorLog.Txt" For Append Shared As intFile

    'Write the error information to the file
    Write #intFile, "LogErrorDemo", Now, Err, Error, CurrentUser()

    'Close the file
    Close intFile
End Sub

 








Related examples in the same category

1.Properties of the Err Object
2.Raising an Error
3.Deal with the error
4.Create an error, and then query the object for the error number and description
5.Check the error number
6.Get the Error source
7.Creating a User-Defined Error
8.Viewing the Errors Stored in the Errors Collection
9.Using the LogError Routine
10.The Mail your Error Routine
11.Move through the Errors collection and display properties of each Error object
12.Trap the error with On Error GoTo
13.Show Error discription in MsgBox
14.Show Error Number
15.Runtime Error 9: Subscript Out of Range
16.RunTime Error 1004: Method Range of Object Global Failed
17.Try again in case an error