home *** CD-ROM | disk | FTP | other *** search
- unit Main;
-
- { Program copyright (c) 1995 by Charles Calvert }
- { Project Name: SUBCOMP }
-
- interface
-
- uses
- WinTypes, WinProcs,
- Classes, Graphics,
- Forms, Controls,
- SubComp, StdCtrls;
-
- type
- TForm1 = class(TForm)
- Button1: TButton;
- procedure Button1Click(Sender: TObject);
- private
- c: TMyPanel;
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.Button1Click(Sender: TObject);
- begin
- C := TMyPanel.Create(Self);
- C.Parent := Form1;
- end;
-
- end.
-
-