Files
lazarus-ccr/components/jujiboutils/jujibo-utils/example1/main.lfm
jujibo 6a8512f3c1 Fix property
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1974 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-09-20 08:58:19 +00:00

178 lines
3.6 KiB
Plaintext

object Form1: TForm1
Left = 285
Height = 332
Top = 159
Width = 366
Caption = 'Form1'
ClientHeight = 332
ClientWidth = 366
OnCreate = FormCreate
LCLVersion = '0.9.31'
object Label1: TLabel
Left = 13
Height = 18
Top = 16
Width = 150
Caption = 'Testing jujibo db controls'
ParentColor = False
end
object DBNavigator1: TDBNavigator
Left = 21
Height = 25
Top = 96
Width = 241
BevelOuter = bvNone
ChildSizing.EnlargeHorizontal = crsScaleChilds
ChildSizing.EnlargeVertical = crsScaleChilds
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 100
ClientHeight = 25
ClientWidth = 241
DataSource = Datasource1
Options = []
TabOrder = 5
end
object Label2: TLabel
Left = 24
Height = 18
Top = 133
Width = 14
Caption = 'Id'
ParentColor = False
end
object Label3: TLabel
Left = 106
Height = 18
Top = 133
Width = 29
Caption = 'Date'
ParentColor = False
end
object Label4: TLabel
Left = 188
Height = 18
Top = 133
Width = 21
Caption = 'Id2'
ParentColor = False
end
object Label5: TLabel
Left = 272
Height = 18
Top = 133
Width = 30
Caption = 'Total'
ParentColor = False
end
object BitBtn1: TBitBtn
Left = 273
Height = 30
Top = 289
Width = 77
Anchors = [akRight, akBottom]
Caption = '&Cerrar'
Kind = bkClose
ModalResult = 11
TabOrder = 6
end
object JDBLabeledCurrencyEdit1: TJDBLabeledCurrencyEdit
Left = 272
Height = 27
Top = 200
Width = 80
DisplayFormat = '#,0.00€'
DataField = 'TOTAL'
DataSource = Datasource1
Decimals = 2
Alignment = taRightJustify
EditLabel.AnchorSideLeft.Control = JDBLabeledCurrencyEdit1
EditLabel.AnchorSideBottom.Control = JDBLabeledCurrencyEdit1
EditLabel.Left = 272
EditLabel.Height = 18
EditLabel.Top = 179
EditLabel.Width = 84
EditLabel.Caption = 'Total (labeled)'
EditLabel.ParentColor = False
TabOrder = 4
end
object JDBIntegerEdit1: TJDBIntegerEdit
Left = 24
Height = 27
Top = 152
Width = 80
DataField = 'ID'
DataSource = Datasource1
Alignment = taRightJustify
TabOrder = 0
end
object JDBDateEdit1: TJDBDateEdit
Left = 106
Height = 27
Top = 152
Width = 80
DataField = 'DATE'
DataSource = Datasource1
TabOrder = 1
end
object JDBIntegerEdit2: TJDBIntegerEdit
Left = 188
Height = 27
Top = 152
Width = 80
DataField = 'ID2'
DataSource = Datasource1
ReadOnly = True
Alignment = taRightJustify
TabOrder = 2
end
object JDBCurrencyEdit1: TJDBCurrencyEdit
Left = 270
Height = 27
Top = 152
Width = 80
DisplayFormat = '#,0.00€'
DataField = 'TOTAL'
DataSource = Datasource1
Decimals = 2
Alignment = taRightJustify
TabOrder = 3
end
object Datasource1: TDatasource
DataSet = MemDataset1
left = 224
top = 8
end
object MemDataset1: TMemDataset
Active = True
FieldDefs = <
item
Name = 'ID'
DataType = ftInteger
Precision = 0
Size = 0
end
item
Name = 'DATE'
DataType = ftDate
Precision = 0
Size = 0
end
item
Name = 'TOTAL'
DataType = ftFloat
Precision = 0
Size = 0
end
item
Name = 'ID2'
DataType = ftInteger
Precision = 0
Size = 0
end>
left = 184
top = 8
end
end