123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- object SelectMaskDialog: TSelectMaskDialog
- Left = 369
- Top = 257
- HelpType = htKeyword
- HelpKeyword = 'ui_select'
- BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
- BorderStyle = bsDialog
- Caption = 'SelectX'
- ClientHeight = 142
- ClientWidth = 417
- Color = clBtnFace
- ParentFont = True
- OldCreateOrder = True
- Position = poDesigned
- OnCloseQuery = FormCloseQuery
- OnShow = FormShow
- DesignSize = (
- 417
- 142)
- PixelsPerInch = 96
- TextHeight = 13
- object MaskGroup: TGroupBox
- Left = 8
- Top = 6
- Width = 401
- Height = 94
- Anchors = [akLeft, akTop, akRight, akBottom]
- TabOrder = 0
- DesignSize = (
- 401
- 94)
- object Label3: TLabel
- Left = 16
- Top = 19
- Width = 47
- Height = 13
- Caption = 'File &mask:'
- FocusControl = MaskEdit
- end
- object ApplyToDirectoriesCheck: TCheckBox
- Left = 16
- Top = 63
- Width = 209
- Height = 17
- Caption = 'Apply to &directories'
- TabOrder = 3
- end
- object MaskEdit: THistoryComboBox
- Left = 16
- Top = 36
- Width = 283
- Height = 21
- AutoComplete = False
- Anchors = [akLeft, akTop, akRight]
- MaxLength = 1000
- TabOrder = 0
- Text = '*.*'
- OnExit = MaskEditExit
- end
- object HintText: TStaticText
- Left = 194
- Top = 64
- Width = 105
- Height = 17
- Alignment = taRightJustify
- Anchors = [akTop, akRight]
- AutoSize = False
- Caption = 'mask hi&nts'
- TabOrder = 1
- TabStop = True
- end
- object MaskButton: TButton
- Left = 305
- Top = 34
- Width = 80
- Height = 25
- Anchors = [akTop, akRight]
- Caption = '&Edit...'
- TabOrder = 2
- OnClick = MaskButtonClick
- end
- end
- object OKBtn: TButton
- Left = 165
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 2
- end
- object CancelBtn: TButton
- Left = 250
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 3
- end
- object HelpButton: TButton
- Left = 333
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = '&Help'
- TabOrder = 4
- OnClick = HelpButtonClick
- end
- object ClearButton: TButton
- Left = 84
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = '&Clear'
- ModalResult = 1
- TabOrder = 1
- OnClick = ClearButtonClick
- end
- end
|