source: components/CoolTrayIcon/demos/CustomHint1/CustomHint.dpr

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

3.1 verze, první revize

File size: 232 bytes
Line 
1program CustomHint;
2
3uses
4 Forms,
5 Main in 'Main.pas' {Form1};
6
7{$R *.RES}
8
9begin
10 Application.Initialize;
11 Application.Title := 'Custom Tooltip';
12 Application.CreateForm(TForm1, Form1);
13 Application.Run;
14end.
15
Note: See TracBrowser for help on using the repository browser.