home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / SYSUTILS.RC < prev    next >
Encoding:
Text File  |  1996-06-11  |  3.2 KB  |  93 lines

  1. #include "sysutils.inc"
  2.  
  3. STRINGTABLE
  4. {
  5.   SInvalidInteger, "'%s' is not a valid integer value"
  6.   SInvalidFloat, "'%s' is not a valid floating point value"
  7.   SInvalidDate, "'%s' is not a valid date"
  8.   SInvalidTime, "'%s' is not a valid time"
  9.   SInvalidDateTime, "'%s' is not a valid date and time"
  10.   STimeEncodeError, "Invalid argument to time encode"
  11.   SDateEncodeError, "Invalid argument to date encode"
  12.   SOutOfMemory, "Out of memory"
  13.   SInOutError, "I/O error %d"
  14.   SFileNotFound, "File not found"
  15.   SInvalidFilename, "Invalid filename"
  16.   STooManyOpenFiles, "Too many open files"
  17.   SAccessDenied, "File access denied"
  18.   SEndOfFile, "Read beyond end of file"
  19.   SDiskFull, "Disk full"
  20.   SInvalidInput, "Invalid numeric input"
  21.   SDivByZero, "Division by zero"
  22.   SRangeError, "Range check error"
  23.   SIntOverflow, "Integer overflow"
  24.   SInvalidOp, "Invalid floating point operation"
  25.   SZeroDivide, "Floating point division by zero"
  26.   SOverflow, "Floating point overflow"
  27.   SUnderflow, "Floating point underflow"
  28.   SInvalidPointer, "Invalid pointer operation"
  29.   SInvalidCast, "Invalid class typecast"
  30.   SAccessViolation, "Access violation at address %p. %s of address %p"
  31.   SStackOverflow, "Stack overflow"
  32.   SControlC, "Control-C hit"
  33.   SPrivilege, "Privileged instruction"
  34.   SOperationAborted, "Operation aborted"
  35.   SException, "Exception %s in module %s at %p.\x0A%s%s"
  36.   SExceptTitle, "Application Error"
  37.   SInvalidFormat, "Format '%s' invalid or incompatible with argument"
  38.   SArgumentMissing, "No argument for format '%s'"
  39.   SInvalidVarCast, "Invalid variant type conversion"
  40.   SInvalidVarOp, "Invalid variant operation"
  41.   SDispatchError, "Variant method calls not supported"
  42.   SReadAccess, "Read"
  43.   SWriteAccess, "Write"
  44.   SResultTooLong, "Format result longer than 4096 characters"
  45.   SFormatTooLong, "Format string too long"
  46.   SVarArrayCreate, "Error creating variant array"
  47.   SVarNotArray, "Variant is not an array"
  48.   SVarArrayBounds, "Variant array index out of bounds"
  49.   SExternalException, "External exception %x"
  50.  
  51.   SShortMonthNames + 0, "Jan"
  52.   SShortMonthNames + 1, "Feb"
  53.   SShortMonthNames + 2, "Mar"
  54.   SShortMonthNames + 3, "Apr"
  55.   SShortMonthNames + 4, "May"
  56.   SShortMonthNames + 5, "Jun"
  57.   SShortMonthNames + 6, "Jul"
  58.   SShortMonthNames + 7, "Aug"
  59.   SShortMonthNames + 8, "Sep"
  60.   SShortMonthNames + 9, "Oct"
  61.   SShortMonthNames + 10, "Nov"
  62.   SShortMonthNames + 11, "Dec"
  63.  
  64.   SLongMonthNames + 0, "January"
  65.   SLongMonthNames + 1, "February"
  66.   SLongMonthNames + 2, "March"
  67.   SLongMonthNames + 3, "April"
  68.   SLongMonthNames + 4, "May"
  69.   SLongMonthNames + 5, "June"
  70.   SLongMonthNames + 6, "July"
  71.   SLongMonthNames + 7, "August"
  72.   SLongMonthNames + 8, "September"
  73.   SLongMonthNames + 9, "October"
  74.   SLongMonthNames + 10, "November"
  75.   SLongMonthNames + 11, "December"
  76.  
  77.   SShortDayNames + 0, "Sun"
  78.   SShortDayNames + 1, "Mon"
  79.   SShortDayNames + 2, "Tue"
  80.   SShortDayNames + 3, "Wed"
  81.   SShortDayNames + 4, "Thu"
  82.   SShortDayNames + 5, "Fri"
  83.   SShortDayNames + 6, "Sat"
  84.  
  85.   SLongDayNames + 0, "Sunday"
  86.   SLongDayNames + 1, "Monday"
  87.   SLongDayNames + 2, "Tuesday"
  88.   SLongDayNames + 3, "Wednesday"
  89.   SLongDayNames + 4, "Thursday"
  90.   SLongDayNames + 5, "Friday"
  91.   SLongDayNames + 6, "Saturday"
  92. }
  93.