We can have:
On Error Resume Next
or
On Error Goto Err_hldr
But this will apply this to the entire sub.
Is It possible to have somthing like this:
So that the program would break normally after this line?Code:Private Sub Command1_Click()
On Error Resume Next
Kill ThisFile
On Error Break
Kill AnotherFile
End Sub
