home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / dragonfl / flicpane.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1997-09-15  |  1.2 KB  |  42 lines

  1. unit FlicPanelReg;
  2. {
  3.    Project :   FlicPanel Component for Borland Delphi
  4.    Company :   Dragon Multimedia, London
  5.                Copyright (C) 1997 P W Kuczora.  All Rights Reserved.
  6.                7th Sept 1997
  7.  
  8.    File    :  FlicPanelReg.pas
  9.    Author  :  Paul W Kuczora
  10.    Overview:  The component registration code
  11.  
  12.    EMail   :  kuczora@pobox.com
  13.  
  14.    History :
  15.  
  16. 7th Sept 1997        v1.00  initial development
  17.  
  18.  
  19. }
  20. { --------------------------------------------------------------------------- }
  21. interface
  22. { --------------------------------------------------------------------------- }
  23.  
  24. procedure Register;
  25.  
  26. { --------------------------------------------------------------------------- }
  27. implementation
  28. { --------------------------------------------------------------------------- }
  29.  
  30. uses Classes, FlicPanel;
  31.  
  32. { --------------------------------------------------------------------------- }
  33. procedure Register;
  34.  
  35. begin
  36.   RegisterComponents('Samples', [TFlicPanel]);
  37. end;
  38.  
  39. { --------------------------------------------------------------------------- }
  40. end.
  41. { --------------------------------------------------------------------------- }
  42.