home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
DOC
/
GRAPHEX
/
GRAPHEX.DPR
< prev
next >
Wrap
Text File
|
1998-06-16
|
258b
|
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.