home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 5 for Professionals
/
DELPHI5.iso
/
Runimage
/
Delphi50
/
Demos
/
Doc
/
Graphex
/
graphex.dpr
< 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
Text File
|
1999-08-11
|
258 b
|
15 lines
program GraphEx;
uses
Forms,
GraphWin in 'GraphWin.pas' {Form1},
BMPDlg in 'BMPDlg.pas' {NewBMPForm};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TNewBMPForm, NewBMPForm);
Application.Run;
end.