27 lines
368 B
Plaintext
27 lines
368 B
Plaintext
unit umsg;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, {$IfNDef VER130} Variants, {$EndIf} Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, ExtCtrls;
|
|
|
|
type
|
|
Tfmsg = class(TForm)
|
|
Panel1: TPanel;
|
|
Label1: TLabel;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
fmsg: Tfmsg;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|