
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2781 8e941d3f-bd1b-0410-a28a-d453659cc2b4
40 lines
704 B
ObjectPascal
40 lines
704 B
ObjectPascal
unit main;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
|
Buttons, JLabeledCurrencyEdit, JLabeledDateEdit, JLabeledFloatEdit,
|
|
JLabeledIntegerEdit;
|
|
|
|
type
|
|
|
|
{ TForm1 }
|
|
|
|
TForm1 = class(TForm)
|
|
BitBtn1: TBitBtn;
|
|
GroupBox1: TGroupBox;
|
|
JLabeledCurrencyEdit1: TJLabeledCurrencyEdit;
|
|
JLabeledDateEdit1: TJLabeledDateEdit;
|
|
JLabeledFloatEdit1: TJLabeledFloatEdit;
|
|
JLabeledIntegerEdit1: TJLabeledIntegerEdit;
|
|
JLabeledIntegerEdit2: TJLabeledIntegerEdit;
|
|
Label1: TLabel;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
Form1: TForm1;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
end.
|
|
|