2011-09-20 15:27:54 +00:00
|
|
|
unit main;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
2011-09-30 11:09:31 +00:00
|
|
|
Buttons, JLabeledCurrencyEdit, JLabeledDateEdit, JLabeledFloatEdit,
|
|
|
|
JLabeledIntegerEdit;
|
2011-09-20 15:27:54 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
|
|
|
|
{ TForm1 }
|
|
|
|
|
|
|
|
TForm1 = class(TForm)
|
|
|
|
BitBtn1: TBitBtn;
|
|
|
|
GroupBox1: TGroupBox;
|
|
|
|
JLabeledCurrencyEdit1: TJLabeledCurrencyEdit;
|
|
|
|
JLabeledDateEdit1: TJLabeledDateEdit;
|
2011-09-27 10:14:38 +00:00
|
|
|
JLabeledFloatEdit1: TJLabeledFloatEdit;
|
2011-09-20 15:27:54 +00:00
|
|
|
JLabeledIntegerEdit1: TJLabeledIntegerEdit;
|
|
|
|
JLabeledIntegerEdit2: TJLabeledIntegerEdit;
|
|
|
|
Label1: TLabel;
|
|
|
|
private
|
|
|
|
{ private declarations }
|
|
|
|
public
|
|
|
|
{ public declarations }
|
2011-09-30 11:09:31 +00:00
|
|
|
end;
|
2011-09-20 15:27:54 +00:00
|
|
|
|
|
|
|
var
|
2011-09-30 11:09:31 +00:00
|
|
|
Form1: TForm1;
|
2011-09-20 15:27:54 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.lfm}
|
|
|
|
|
|
|
|
end.
|
|
|
|
|