Skip to content

Commit 9b3bc82

Browse files
Add files via upload
1 parent c290e04 commit 9b3bc82

29 files changed

+6713
-0
lines changed

‎Demos/Controls/DotNetControlDemos.groupproj

Lines changed: 384 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
program RadioButtons;
2+
3+
uses
4+
{$IF CompilerVersion > 22}Vcl.Forms,{$ELSE}Forms,{$IFEND}
5+
uRadioButtons in 'uRadioButtons.pas' {Form29};
6+
7+
{$R *.res}
8+
9+
begin
10+
Application.Initialize;
11+
Application.MainFormOnTaskbar := True;
12+
Application.CreateForm(TForm29, Form29);
13+
Application.Run;
14+
end.

0 commit comments

Comments
 (0)