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

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

3.1 verze, první revize

File size: 252 bytes
Line 
1program TrayDraw;
2
3uses
4 Forms,
5 CtDraw in 'CtDraw.pas' {DrawForm};
6
7{$R *.RES}
8
9begin
10 Application.Initialize;
11 Application.Title := 'CoolTrayIcon Drawing Demo';
12 Application.CreateForm(TDrawForm, DrawForm);
13 Application.Run;
14end.
Note: See TracBrowser for help on using the repository browser.