CSKernelClient.fErrors.setDetails C# (CSharp) Method

setDetails() public method

public setDetails ( string details ) : void
details string
return void
        public void setDetails(string details)
        {
            txError.Text = details;
        }

Usage Example

Example #1
0
 public static void mngError(Exception ex,
                      string function,
                      string module,
                      string infoAdd,
                      string title,
                      eErrorLevel level,
                      eErrorType varType,
                      object connection)
 {
     // TODO: implement function
     fErrors f = new fErrors();
     f.setErrorIcon();
     f.setDetails(ex.Message);
     f.ShowDialog();
 }
All Usage Examples Of CSKernelClient.fErrors::setDetails