I am using VBScript to read through a bunch of text files and load the records into a SQL server table. If my VB Script doesn't have an "On Error Resume Next" statement, one of the records generates an error message that says Incorrect Date Format. If I put in the "On Error..." statement, the script blows through the error and I don't see it at all. If I were in VBA, I would use "On Error GoTo ErrHdlr", but VBScript doesn't seem to work that way. What I would like to do is see a message that displays the text file name and the offending record. How can I do this in VBScript?