home *** CD-ROM | disk | FTP | other *** search
/ PC Open 19 / pcopen19.iso / Zipped / CALMIR21.ZIP / SOURCE.ZIP / VCL / CALVCL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-02-20  |  958 b   |  33 lines

  1. {*********************************************************}
  2. {                                                         }
  3. {    Calmira Visual Component Library 2.1                 }
  4. {    by Li-Hsin Huang,                                    }
  5. {    released into the public domain January 1998         }
  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, ChkList, ScrTree, SysMenu, IconDlg, Internet,
  19.  LabelSel, Notepad;
  20.  
  21. procedure Register;
  22. begin
  23.   RegisterComponents('Calmira',
  24.     [TMultiGrid, TDropServer, TDropClient, TBarGauge,
  25.       TStyleSpeed, TAppHolder, TCheckList, TScrollTree,
  26.       TSystemMenu, TBrowserLink, TLabelSelect, TNotepad, TWin95Gauge]);
  27.  
  28.   RegisterComponents('Dialogs', [TIconDialog]);
  29. end;
  30.  
  31.  
  32. end.
  33.