home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d6 / RX275D6.ZIP / Units / RXCCONST.PAS < prev    next >
Pascal/Delphi Source File  |  1999-10-12  |  1KB  |  55 lines

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