lazarus-ccr/components/jujiboutils/examples/examplenodb/main.pas
2013-08-30 07:58:45 +00:00

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.