[]
Occurs when an error state is created by the control.
public ErrorEventArgs(int errorCode)
Public Sub New(errorCode As Integer)
Type | Name | Description |
---|---|---|
int | errorCode | Error code that is being raised |
private void control_UserError(object sender, FarPoint.Win.Input.ErrorEventArgs e)
{
Messagebox.Show(Convert.ToString(e.ErrorCode));
}
Private Sub control_UserError(ByVal sender As Object, ByVal e As FarPoint.Win.Input.ErrorEventArgs) Handles control.UserError
Messagebox.Show(e.ErrorCode);
End Sub
Occurs when an error state is created by the control
public ErrorEventArgs(int errorCode, string errorText)
Public Sub New(errorCode As Integer, errorText As String)
Type | Name | Description |
---|---|---|
int | errorCode | The error code for the error that is being raised |
string | 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