22 lines
324 B
ObjectPascal
22 lines
324 B
ObjectPascal
|
|
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.
|