With this code:
====================================
ErrorHandler:
Select Case Err.Number
Case 9 ' "subscript out of range" error.
Exit Sub
Case Else
Resume Next
End Select
Resume
====================================
both the 'Resume next' and the 'Resume' raise the error ("Resume without error" -- but only sometimes! Any ideas why this would be? And What's wrong with Resume?
Thanks in advance..
--Bill
One may not reach the dawn save by the path of the night
--Kahlil Gibran
====================================
ErrorHandler:
Select Case Err.Number
Case 9 ' "subscript out of range" error.
Exit Sub
Case Else
Resume Next
End Select
Resume
====================================
both the 'Resume next' and the 'Resume' raise the error ("Resume without error" -- but only sometimes! Any ideas why this would be? And What's wrong with Resume?
Thanks in advance..
--Bill
One may not reach the dawn save by the path of the night
--Kahlil Gibran