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 >
Text File  |  1997-04-20  |  275b  |  16 lines

  1. program gridbtn;
  2.  
  3. uses
  4.   Forms,
  5.   main in 'main.pas' {Form1},
  6.   About in 'About.pas' {fmAboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TfmAboutBox, fmAboutBox);
  14.   Application.Run;
  15. end.
  16.