2007-07-04 22:17:49 +00:00
|
|
|
unit Unit1;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFNDEF LCL} Windows, Messages, {$ELSE} LclIntf, LMessages, LclType, LResources, {$ENDIF}
|
|
|
|
SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
Dialogs, StdCtrls, ovcsc, ovcbase;
|
|
|
|
|
|
|
|
type
|
|
|
|
TForm1 = class(TForm)
|
|
|
|
OvcSpinner1: TOvcSpinner;
|
|
|
|
Edit1: TEdit;
|
|
|
|
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-07-04 22:17:49 +00:00
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
|
|
|
|
end.
|