ErrorEventArgs Constructor(Int32,String)
Occurs when an error state is created by the control
Parameters
- errorCode
- The 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.ErrorEventArgs e)
{
Messagebox.Show(Convert.ToString(e.ErrorCode) + e.ErrorInfo);
}
Private Sub control_UserError(ByVal sender As Object, ByVal e As FarPoint.Win.Input.ErrorEventArgs) Handles control.UserError
Messagebox.Show(e.ErrorCode + e.ErrorInfo);
End Sub