source: client/Delphi/ServerStat.dpr

Last change on this file was 41, checked in by george, 15 years ago
  • Přidáno: Zdrojové kódy ukázkového programu pro plnění údajů v Delphi.
File size: 314 bytes
Line 
1program ServerStat;
2
3uses
4 Forms,
5 UMainForm in 'UMainForm.pas' {MainForm},
6 UOptionsForm in 'UOptionsForm.pas' {OptionsForm};
7
8{$R *.res}
9
10begin
11 Application.Initialize;
12 Application.CreateForm(TMainForm, MainForm);
13 Application.CreateForm(TOptionsForm, OptionsForm);
14 Application.Run;
15end.
Note: See TracBrowser for help on using the repository browser.