SelectMask.dfm 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. object SelectMaskDialog: TSelectMaskDialog
  2. Left = 369
  3. Top = 257
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_select'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'SelectX'
  9. ClientHeight = 142
  10. ClientWidth = 417
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poDesigned
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 417
  19. 142)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object MaskGroup: TGroupBox
  23. Left = 8
  24. Top = 6
  25. Width = 401
  26. Height = 94
  27. Anchors = [akLeft, akTop, akRight, akBottom]
  28. TabOrder = 0
  29. DesignSize = (
  30. 401
  31. 94)
  32. object Label3: TLabel
  33. Left = 16
  34. Top = 19
  35. Width = 47
  36. Height = 13
  37. Caption = 'File &mask:'
  38. FocusControl = MaskEdit
  39. end
  40. object ApplyToDirectoriesCheck: TCheckBox
  41. Left = 16
  42. Top = 63
  43. Width = 209
  44. Height = 17
  45. Caption = 'Apply to &directories'
  46. TabOrder = 3
  47. end
  48. object MaskEdit: THistoryComboBox
  49. Left = 16
  50. Top = 36
  51. Width = 283
  52. Height = 21
  53. AutoComplete = False
  54. Anchors = [akLeft, akTop, akRight]
  55. MaxLength = 1000
  56. TabOrder = 0
  57. Text = '*.*'
  58. OnExit = MaskEditExit
  59. end
  60. object HintText: TStaticText
  61. Left = 194
  62. Top = 64
  63. Width = 105
  64. Height = 17
  65. Alignment = taRightJustify
  66. Anchors = [akTop, akRight]
  67. AutoSize = False
  68. Caption = 'mask hi&nts'
  69. TabOrder = 1
  70. TabStop = True
  71. end
  72. object MaskButton: TButton
  73. Left = 305
  74. Top = 34
  75. Width = 80
  76. Height = 25
  77. Anchors = [akTop, akRight]
  78. Caption = '&Edit...'
  79. TabOrder = 2
  80. OnClick = MaskButtonClick
  81. end
  82. end
  83. object OKBtn: TButton
  84. Left = 165
  85. Top = 109
  86. Width = 75
  87. Height = 25
  88. Anchors = [akRight, akBottom]
  89. Caption = 'OK'
  90. Default = True
  91. ModalResult = 1
  92. TabOrder = 2
  93. end
  94. object CancelBtn: TButton
  95. Left = 250
  96. Top = 109
  97. Width = 75
  98. Height = 25
  99. Anchors = [akRight, akBottom]
  100. Cancel = True
  101. Caption = 'Cancel'
  102. ModalResult = 2
  103. TabOrder = 3
  104. end
  105. object HelpButton: TButton
  106. Left = 333
  107. Top = 109
  108. Width = 75
  109. Height = 25
  110. Anchors = [akRight, akBottom]
  111. Caption = '&Help'
  112. TabOrder = 4
  113. OnClick = HelpButtonClick
  114. end
  115. object ClearButton: TButton
  116. Left = 84
  117. Top = 109
  118. Width = 75
  119. Height = 25
  120. Anchors = [akRight, akBottom]
  121. Caption = '&Clear'
  122. ModalResult = 1
  123. TabOrder = 1
  124. OnClick = ClearButtonClick
  125. end
  126. end