home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April A / Pcwk4a98.iso / PROGRAM / DELPHI16 / Calmira / Src / VCL / CALVCL.PAS < prev    next >
Pascal/Delphi Source File  |  1997-02-15  |  898b  |  32 lines

  1. {*********************************************************}
  2. {                                                         }
  3. {    Calmira Visual Component Library 1.0                 }
  4. {    by Li-Hsin Huang,                                    }
  5. {    released into the public domain January 1997         }
  6. {                                                         }
  7. {*********************************************************}
  8.  
  9. unit CalVCL;
  10.  
  11. interface
  12.  
  13. procedure Register;
  14.  
  15. implementation
  16.  
  17. uses Classes, MultiGrd, DropServ, DropClnt, BarGauge, StylSped,
  18.  ApHolder, FormDrag, ChkList, ScrTree, SysMenu, IconDlg;
  19.  
  20. procedure Register;
  21. begin
  22.   RegisterComponents('Calmira',
  23.     [TMultiGrid, TDropServer, TDropClient, TBarGauge,
  24.       TStyleSpeed, TFormDrag, TAppHolder, TCheckList, TScrollTree,
  25.       TSystemMenu]);
  26.  
  27.   RegisterComponents('Dialogs', [TIconDialog]);
  28. end;
  29.  
  30.  
  31. end.
  32.