Skip to content

Commit 0524c91

Browse files
Add files via upload
1 parent e8b8a9e commit 0524c91

15 files changed

+4786
-0
lines changed

Demos/Components/DotNetComponentDemos.groupproj

+384
Large diffs are not rendered by default.

Demos/Components/Timer/Timer.dpr

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
program Timer;
2+
3+
uses
4+
{$IF CompilerVersion > 22}Vcl.Forms,{$ELSE}Forms,{$IFEND}
5+
uTimer in 'uTimer.pas' {Form14};
6+
7+
{$R *.res}
8+
9+
begin
10+
Application.Initialize;
11+
Application.MainFormOnTaskbar := True;
12+
Application.CreateForm(TForm14, Form14);
13+
Application.Run;
14+
end.

0 commit comments

Comments
 (0)