Rxcconst.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. {*******************************************************}
  2. {                                                       }
  3. {         Delphi VCL Extensions (RX)                    }
  4. {                                                       }
  5. {         Copyright (c) 1995 AO ROSNO                   }
  6. {                                                       }
  7. {*******************************************************}
  8. unit RXCConst;
  9. { RX controls and components constants }
  10. {
  11.   Reserved diapasone
  12.   from MaxExtStrID - 36
  13.   to   MaxExtStrID - 84
  14. }
  15. interface
  16. const
  17. { The minimal VCL's used string ID is 61440. The custom IDs must be
  18.   less that above. }
  19.   MaxExtStrID = 61300;
  20. const
  21. { ToolEdit }
  22.   SBrowse                = MaxExtStrID - 36;
  23.   SDefaultFilter         = MaxExtStrID - 37;
  24. { PickDate }
  25.   SDateDlgTitle          = MaxExtStrID - 38;
  26.   SNextYear              = MaxExtStrID - 39;
  27.   SNextMonth             = MaxExtStrID - 40;
  28.   SPrevYear              = MaxExtStrID - 41;
  29.   SPrevMonth             = MaxExtStrID - 42;
  30. { VCLUtils }
  31.   SNotImplemented        = MaxExtStrID - 43;
  32.   SFileNotExec           = MaxExtStrID - 44;
  33.   SLoadLibError          = MaxExtStrID - 45;
  34.   SDetails               = MaxExtStrID - 46;
  35. implementation
  36. {$IFDEF WIN32}
  37.  {$R *.R32}
  38. {$ELSE}
  39.  {$R *.R16}
  40. {$ENDIF}
  41. end.