qexport4xlsconsts.pas

来自「Advanced.Export.Component.v4.01.rar,delp」· PAS 代码 · 共 41 行

PAS
41
字号
unit QExport4XLSConsts;

interface

const
  sFileNameNotDefined     = 'File name is not defined';
  sFileDoesNotExist       = 'File %s does not exist';
  sFileIsNotExcelWorkbook = 'File %s is not an Excel Workbook';

  sErrorReadingRecord     = 'Error reading record';
  sExcelInvalid           = 'Error reading Excel records. File invalid';
  sInvalidContinue        = 'Trying to add more than one CONTINUE record to the same record';
  sInvalidVersion         = 'File is saved with an invalid Excel version';
  sWrongExcelRecord       = 'Record with ID 0x%x is invalid';
  sInvalidStringRecord    = 'Invalid String record';

  sInvalidRow             = 'Invalid Row (%d)';
  sInvalidCol             = 'Invalid Column (%d)';

  sInvalidCellValue       = 'Invalid cell value: ''%s''';
  sInvalidErrStr          = 'Invalid cell error code: ''%s''';
  sShrFmlaNotFound        = 'Cannot find Shared Formula';
  sBadToken               = 'Error reading formula, Token Id: 0x%2x is not supported';
  sBadFormula             = 'Formula at Row %d, column %d is not supported. Token Id: 0x%2x';

  sCellAccessError        = 'Cannot access cell ''%s'' as type %s';
  sValueMissing           = 'Value is missing';
  sEmptyStack             = 'EmptyStack';
  sInvalidAreaArgument    = 'Invalid Reference(Area) argument';
  sInvalidArraySize       = 'Invalid variant array size';
  sUnknownPTG             = 'Unknown ptg[%.2X]';

  sCannotWrite            = 'Error writing output file';
  sSectionNotLoaded       = 'A section of the workbook is not loaded';
  sStringTooLarge         = 'String too large';
  sInvalidLenOfLen        = 'LenOfLen should be 1 or 2'; 

implementation

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?