/ Published in: Visual Basic
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Sub Test() On Error GoTo Err_Trap 'procedure code goes here Err_Trap_Exit: Exit Sub Err_Trap: MsgBox Err.Description Resume Err_Trap_Exit End Sub