UserErrorEventArgs Constructor(UserErrorCode,String)
Occurs when a user error state is created by the control
Parameters
- errorCode
- The user error code for the error that is being raised
- errorText
- Additional error information for the error that is being raised
private void control_UserError(object sender, FarPoint.Win.Input.UserErrorEventArgs e)
{
Messagebox.Show(Convert.ToString(e.ErrorCode) + e.ErrorInfo);
}
Private Sub control_UserError(ByVal sender As Object, ByVal e As FarPoint.Win.Input.UserErrorEventArgs) Handles control.UserError
Messagebox.Show(e.ErrorCode + e.ErrorInfo);
End Sub