unit HelloWorldFrame; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TfrmHelloWorld = class(TFrame) Label1: TLabel; private { Private-Deklarationen } public { Public-Deklarationen } end; implementation {$R *.dfm} end.