C
Cactus [ÏÉÈËÇò]
A procedure often Number Overflow.
So I put this handler in procedure.
Private Sub Hint()
On Error GoTo Overflow
....... ' Some codes.
Exit Sub
Overflow:
If (Err = 6) Then
......' Handling error.
End If
End Sub
but if other Error happen.
it could be a unhandle error.
because I not handing all err number.
So I put this handler in procedure.
Private Sub Hint()
On Error GoTo Overflow
....... ' Some codes.
Exit Sub
Overflow:
If (Err = 6) Then
......' Handling error.
End If
End Sub
but if other Error happen.
it could be a unhandle error.
because I not handing all err number.