home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 1999 February
/
DPPCPRO0299.ISO
/
February
/
Delphi
/
Install
/
DATA.Z
/
VIEWWIN.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1996-06-11
|
345 b
|
27 lines
unit ViewWin;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
Forms, Dialogs, ExtCtrls;
type
TViewForm = class(TForm)
Image1: TImage;
private
{ Private declarations }
public
{ Public declarations }
end;
var
ViewForm: TViewForm;
implementation
{$R *.DFM}
end.