home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Shareware for Win 95
/
Chip-Shareware-Win95.bin
/
ostatni
/
delphi
/
ruzne
/
auto32d3.exe
/
rar
/
AUTO32D3
/
DEMOS
/
DELPHI3.0
/
GRIDBTN
/
GRIDBTN.DPR
< prev
next >
Wrap
Text File
|
1997-04-20
|
275b
|
16 lines
program gridbtn;
uses
Forms,
main in 'main.pas' {Form1},
About in 'About.pas' {fmAboutBox};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TfmAboutBox, fmAboutBox);
Application.Run;
end.