Hello All,
This should be simple but anyways....
I am trying to handle some errors of the network is down. If the network is down is I will get a "Call Failed" message box. I tried some error handling and that error message still comes up along with my Msgbox (last)
I am trying to hid the system message box and replace with my own and it is not working right....still showing up.
I have something like this
If it errors hide the system error box and replace it with mine.
What am I doing wrong?
Thanks
This should be simple but anyways....
I am trying to handle some errors of the network is down. If the network is down is I will get a "Call Failed" message box. I tried some error handling and that error message still comes up along with my Msgbox (last)
I am trying to hid the system message box and replace with my own and it is not working right....still showing up.
I have something like this
Code:
On Error GoTo ErrBox
code......blah blah blah
Errhandle:
Exit Sub
ErrBox:
Msgbox "This is an error or whatever"
Resume Errhandle
End Sub
If it errors hide the system error box and replace it with mine.
What am I doing wrong?
Thanks