home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / GRABBAR.ZIP / GBarReg.pas < prev    next >
Pascal/Delphi Source File  |  1998-09-22  |  474b  |  26 lines

  1. {$I DFS.INC}
  2.  
  3. unit GBarReg;
  4.  
  5. interface
  6.  
  7.   procedure Register;
  8.  
  9. implementation
  10.  
  11. uses
  12.   GrabBar, DFSAbout, Classes, DsgnIntf;
  13.  
  14.  
  15.  
  16. { Add the components to the Delphi Component Palette.  You will want to }
  17. { modify this so that it appears on the page of your choice.            }
  18. procedure Register;
  19. begin
  20.   RegisterComponents('DFS', [TGrabBar]);
  21.   RegisterPropertyEditor(TypeInfo(TDFSVersion), TGrabBar, 'Version',
  22.      TDFSVersionProperty);
  23. end;
  24.  
  25. end.
  26.