136 lines
2.5 KiB
Plaintext
136 lines
2.5 KiB
Plaintext
object frxFormatEditorForm: TfrxFormatEditorForm
|
|
Left = 196
|
|
Height = 291
|
|
Top = 109
|
|
Width = 301
|
|
BorderStyle = bsDialog
|
|
Caption = 'Display Format'
|
|
ClientHeight = 291
|
|
ClientWidth = 301
|
|
Color = clBtnFace
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
KeyPreview = True
|
|
OnCreate = FormCreate
|
|
OnHide = FormHide
|
|
OnKeyDown = FormKeyDown
|
|
OnShow = FormShow
|
|
Position = poScreenCenter
|
|
LCLVersion = '1.2.6.0'
|
|
object ExpressionL: TLabel
|
|
Left = 8
|
|
Height = 13
|
|
Top = 11
|
|
Width = 56
|
|
Caption = 'Expression:'
|
|
ParentColor = False
|
|
end
|
|
object CategoryL: TLabel
|
|
Left = 8
|
|
Height = 13
|
|
Top = 44
|
|
Width = 49
|
|
Caption = 'Category:'
|
|
ParentColor = False
|
|
end
|
|
object FormatL: TLabel
|
|
Left = 156
|
|
Height = 13
|
|
Top = 44
|
|
Width = 38
|
|
Caption = 'Format:'
|
|
ParentColor = False
|
|
end
|
|
object OkB: TButton
|
|
Left = 138
|
|
Height = 25
|
|
Top = 256
|
|
Width = 75
|
|
Caption = 'OK'
|
|
Default = True
|
|
ModalResult = 1
|
|
TabOrder = 0
|
|
end
|
|
object CancelB: TButton
|
|
Left = 218
|
|
Height = 25
|
|
Top = 256
|
|
Width = 75
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 1
|
|
end
|
|
object GroupBox1: TGroupBox
|
|
Left = 8
|
|
Height = 73
|
|
Top = 170
|
|
Width = 285
|
|
ClientHeight = 55
|
|
ClientWidth = 281
|
|
TabOrder = 2
|
|
object FormatStrL: TLabel
|
|
Left = 0
|
|
Height = 13
|
|
Top = 4
|
|
Width = 68
|
|
Caption = 'Format string:'
|
|
ParentColor = False
|
|
end
|
|
object SeparatorL: TLabel
|
|
Left = 0
|
|
Height = 13
|
|
Top = 32
|
|
Width = 90
|
|
Caption = 'Decimal separator:'
|
|
ParentColor = False
|
|
end
|
|
object FormatE: TEdit
|
|
Left = 144
|
|
Height = 21
|
|
Top = 0
|
|
Width = 123
|
|
TabOrder = 0
|
|
end
|
|
object SeparatorE: TEdit
|
|
Left = 144
|
|
Height = 21
|
|
Top = 28
|
|
Width = 25
|
|
TabOrder = 1
|
|
Text = ','
|
|
end
|
|
end
|
|
object ComboBox1: TComboBox
|
|
Left = 104
|
|
Height = 21
|
|
Top = 8
|
|
Width = 189
|
|
ItemHeight = 13
|
|
OnChange = ComboBox1Change
|
|
Style = csDropDownList
|
|
TabOrder = 3
|
|
end
|
|
object FormatLB: TListBox
|
|
Left = 156
|
|
Height = 101
|
|
Top = 60
|
|
Width = 137
|
|
ItemHeight = 13
|
|
OnClick = FormatLBClick
|
|
OnDrawItem = FormatLBDrawItem
|
|
Style = lbOwnerDrawFixed
|
|
TabOrder = 4
|
|
end
|
|
object CategoryLB: TListBox
|
|
Left = 8
|
|
Height = 101
|
|
Top = 60
|
|
Width = 137
|
|
ItemHeight = 0
|
|
OnClick = CategoryLBClick
|
|
TabOrder = 5
|
|
end
|
|
end
|