source: components/CoolTrayIcon/demos/StartHidden/StartHidden.dpr

Last change on this file was 1, checked in by maron, 16 years ago

3.1 verze, první revize

File size: 239 bytes
Line 
1program StartHidden;
2
3uses
4 Forms,
5 Main in 'Main.pas' {MainForm};
6
7{$R *.res}
8
9begin
10 Application.Initialize;
11 Application.Title := 'Start Hidden?';
12 Application.CreateForm(TMainForm, MainForm);
13 Application.Run;
14end.
Note: See TracBrowser for help on using the repository browser.