Provide more information if you like:
Sub x()
Dim d As Double
Dim s As String
On Error GoTo Oops
d = mySqrt(-5)
s = MyFilefinder("C:\unlikely.txt")
Exit Sub
Oops:
MsgBox "Error " & Err.Number & _
" in module " & _
Err.Source & _
": " & Err.Description
Resume Next ' or skip this to just exit
End Sub
Function mySqrt(d As Double) As Double
On Error Resume Next
mySqrt = Sqr(d)
If Err.Number Then
On Error GoTo 0
Err.Raise 513, "mySqrt"
End If
End Function
Function MyFilefinder(sFile As String) As String
MyFilefinder = Dir(sFile)
If Len(MyFilefinder) = 0 Then Err.Raise 514, "MyFileFinder", "File not found!"
End Function
Bookmarks