source: branches/pre_reorg/Components/Components.pas

Last change on this file was 141, checked in by RBRi, 18 years ago

unused stuff removed

  • Property svn:eol-style set to native
File size: 260 bytes
Line 
1Program Components;
2
3Uses
4 Forms,
5 Graphics,
6 ComponentsTestForm;
7// NonSizableDialogUnit;
8
9{$r Components.scu}
10
11Begin
12 Application.Create;
13 Application.CreateForm (TComponentsTestForm, ComponentsTestForm);
14 Application.Run;
15 Application.Destroy;
16End.
Note: See TracBrowser for help on using the repository browser.