home *** CD-ROM | disk | FTP | other *** search
- program WPChess;
-
- uses
- Forms,
- MainForm in 'MainForm.pas' {Form1},
- ChessBrd in '\Dev\Delphi\Components\Chessbrd\chessbrd.pas',
- AboutForm in 'AboutForm.pas' {About};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.Title := 'WinPoint Schach';
- Application.CreateForm(TAbout, About);
- Application.CreateForm(TForm1, Form1);
- Application.Run;
- end.
-