home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / kolekce / d56 / TDSOFT.ZIP / DEMO / InvisibleFrm.pas < prev    next >
Pascal/Delphi Source File  |  2001-05-24  |  438b  |  27 lines

  1. unit InvisibleFrm;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   TDTrasparentWindow, ExtCtrls, TDGradientPanel, StdCtrls;
  8.  
  9. type
  10.   TfrmInvisible = class(TForm)
  11.     TDTW: TTDTrasparentWindow;
  12.     Label1: TLabel;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   frmInvisible: TfrmInvisible;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.