home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 040A / CAPCTRL.ZIP / SOURCE / CAPABOUT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-03-21  |  470 b   |  26 lines

  1. unit CapAbout;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls, CapCtrl, ComCtrls;
  8.  
  9. type
  10.   TCaptionControlAbout = class(TForm)
  11.     ControlImage: TImage;
  12.     lblComponent: TLabel;
  13.     lblVersion: TLabel;
  14.     lblCopyright: TLabel;
  15.     lblHistory: TLabel;
  16.     btnOK: TButton;
  17.     CaptionControl1: TCaptionControl;
  18.     lvwHistory: TListView;
  19.   end;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. end.
  26.