2007-01-16 02:17:08 +00:00
|
|
|
unit Unit1;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFNDEF LCL} Windows, Messages, {$ELSE} LclIntf, LMessages, LclType, LResources, {$ENDIF}
|
|
|
|
SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
Dialogs, StdCtrls, ovclabel;
|
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
{ TForm1 }
|
|
|
|
|
|
|
|
TForm1 = class(TForm)
|
|
|
|
OvcLabel1: TOvcLabel;
|
|
|
|
OvcLabel2: TOvcLabel;
|
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
Form1: TForm1;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$IFNDEF LCL}
|
|
|
|
{$R *.dfm}
|
2014-04-28 20:45:29 +00:00
|
|
|
{$ELSE}
|
|
|
|
{$R *.lfm}
|
2007-01-16 02:17:08 +00:00
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
|
|
|
|
end.
|