home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / comps / widgets / delphi10 / pcximage / testpcxi.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1996-06-18  |  361 b   |  26 lines

  1. unit Testpcxi;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, Pcximage;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     PCXImage1: TPCXImage;
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   Form1: TForm1;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. end.
  26.