OK , try something else to get the source of error (your app , external app ..)
It's better your create a function that trap any error and returns a discriptive msgs.
VB Code:
Try Dim frm As Form1 frm.Name = "error" Catch x As Exception MsgBox(x.Source) End Try





Reply With Quote