How can I give my own Error handling a higher priority
Hello everyone, i want to give the user of my program some hints when an error occurs. I tried to create an active Error handling (Code below).
But Visio always opens its own typical window instead of doing the actions I want it to do.
Is there any reason why ?
<code>
On Error goto Error_Handle
'Some Code including:
Err.Raise(6)
Err_Handle:
'Some actions
</code>
thanks :)

