home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk12 / lib.pak / SAMPREG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  321 b   |  19 lines

  1. unit SampReg;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses SysUtils, Classes, ColorGrd, Gauges, DirOutln, Spin, Calendar, LibConst;
  10.  
  11. procedure Register;
  12. begin
  13.   RegisterComponents(LoadStr(srSamples), [TGauge, TColorGrid, 
  14.     TSpinButton, TSpinEdit, TDirectoryOutline, TCalendar]);
  15. end;
  16.  
  17. end.
  18.  
  19.