- Home
·
- Miscellaneous
·
- A better way to use exception handling to view what errors are possible in Visual Basic, each error
A better way to use exception handling to view what errors are possible in Visual Basic, each error
A better way to use exception handling to view what errors are possible in Visual Basic, each error number will allow to you view its error
Rate A better way to use exception handling to view what errors are possible in Visual Basic, each error
(2(2 Vote))
Private Sub Command1_Click()
On Error GoTo Exception:
ErrorNumber = InputBox("Enter the number for the error you wish to view", "Error Number")
Err.Raise (ErrorNumber)
Exception:
MsgBox Err.Description
End Sub
A better way to use exception handling to view what errors are possible in Visual Basic, each error Comments
No comments yet — be the first to post one!
Post a Comment