Files
lazarus-ccr/components/orpheus/tests/TestFlexEdit/unit1.lfm
macpgmr 990d5a299f Release 0.1.6 (20070704):
Fix for TO32TCFlexEdit validation;
 3 new example programs (TestSpinner, TestSimpField, TestTblEdits);
 updated OrphStatus.html notes.


git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@204 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-07-04 22:17:49 +00:00

79 lines
2.1 KiB
Plaintext

object Form1: TForm1
Left = 192
Top = 114
Width = 415
Height = 289
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Style = []
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 24
Width = 385
Height = 33
Alignment = taCenter
AutoSize = False
Caption = 'Enter a positive integer, then move to next control to validate.'
WordWrap = True
end
object Label2: TLabel
Left = 16
Top = 104
Width = 385
Height = 33
Alignment = taCenter
AutoSize = False
Caption =
'Enter a positive real number, then move to next control to valid' +
'ate.'
WordWrap = True
end
object O32FlexEdit1: TO32FlexEdit
Left = 168
Top = 56
Width = 81
Height = 21
EfColors.Disabled.BackColor = clWindow
EfColors.Disabled.TextColor = clGrayText
EfColors.Error.BackColor = clRed
EfColors.Error.TextColor = clBlack
EfColors.Highlight.BackColor = clHighlight
EfColors.Highlight.TextColor = clHighlightText
TabOrder = 0
Validation.BeepOnError = True
Validation.SoftValidation = False
Validation.ValidationEvent = veOnExit
Validation.ValidatorType = 'None'
Validation.ValidationType = vtUser
Validation.InputRequired = False
OnUserValidation = O32FlexEdit1UserValidation
OnValidationError = O32FlexEditValidationError
end
object O32FlexEdit2: TO32FlexEdit
Left = 168
Top = 136
Width = 81
Height = 21
EfColors.Disabled.BackColor = clWindow
EfColors.Disabled.TextColor = clGrayText
EfColors.Error.BackColor = clRed
EfColors.Error.TextColor = clBlack
EfColors.Highlight.BackColor = clHighlight
EfColors.Highlight.TextColor = clHighlightText
TabOrder = 1
Validation.BeepOnError = True
Validation.SoftValidation = False
Validation.ValidationEvent = veOnExit
Validation.ValidatorType = 'None'
Validation.ValidationType = vtUser
Validation.InputRequired = False
OnUserValidation = O32FlexEdit2UserValidation
OnValidationError = O32FlexEditValidationError
end
end