| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- object SelectMaskDialog: TSelectMaskDialog
- Left = 369
- Top = 257
- HelpType = htKeyword
- HelpKeyword = 'ui_select'
- BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
- BorderStyle = bsDialog
- Caption = 'SelectX'
- ClientHeight = 142
- ClientWidth = 361
- Color = clBtnFace
- ParentFont = True
- OldCreateOrder = True
- Position = poDesigned
- OnCloseQuery = FormCloseQuery
- OnShow = FormShow
- DesignSize = (
- 361
- 142)
- PixelsPerInch = 96
- TextHeight = 13
- object MaskGroup: TGroupBox
- Left = 8
- Top = 6
- Width = 345
- Height = 94
- Anchors = [akLeft, akTop, akRight, akBottom]
- TabOrder = 0
- DesignSize = (
- 345
- 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 = 2
- end
- object MaskEdit: THistoryComboBox
- Left = 16
- Top = 36
- Width = 313
- Height = 21
- AutoComplete = False
- Anchors = [akLeft, akTop, akRight]
- MaxLength = 1000
- TabOrder = 0
- Text = '*.*'
- OnExit = MaskEditExit
- end
- object HintText: TStaticText
- Left = 224
- Top = 64
- Width = 105
- Height = 17
- Alignment = taRightJustify
- Anchors = [akTop, akRight]
- AutoSize = False
- Caption = 'mask hi&nts'
- TabOrder = 1
- TabStop = True
- end
- end
- object OKBtn: TButton
- Left = 109
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 2
- end
- object CancelBtn: TButton
- Left = 194
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 3
- end
- object HelpButton: TButton
- Left = 277
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = '&Help'
- TabOrder = 4
- OnClick = HelpButtonClick
- end
- object ClearButton: TButton
- Left = 24
- Top = 109
- Width = 75
- Height = 25
- Anchors = [akRight, akBottom]
- Caption = '&Clear'
- ModalResult = 1
- TabOrder = 1
- OnClick = ClearButtonClick
- end
- end
|