SelectMask.dfm 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 = 361
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poDesigned
  15. OnCloseQuery = FormCloseQuery
  16. DesignSize = (
  17. 361
  18. 142)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object MaskGroup: TGroupBox
  22. Left = 8
  23. Top = 6
  24. Width = 345
  25. Height = 94
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. TabOrder = 0
  28. DesignSize = (
  29. 345
  30. 94)
  31. object Label3: TLabel
  32. Left = 16
  33. Top = 19
  34. Width = 47
  35. Height = 13
  36. Caption = 'File &mask:'
  37. FocusControl = MaskEdit
  38. end
  39. object ApplyToDirectoriesCheck: TCheckBox
  40. Left = 16
  41. Top = 63
  42. Width = 217
  43. Height = 17
  44. Caption = 'Apply to &directories'
  45. TabOrder = 2
  46. end
  47. object MaskEdit: THistoryComboBox
  48. Left = 16
  49. Top = 36
  50. Width = 313
  51. Height = 21
  52. AutoComplete = False
  53. Anchors = [akLeft, akTop, akRight]
  54. MaxLength = 1000
  55. TabOrder = 0
  56. Text = '*.*'
  57. OnExit = MaskEditExit
  58. end
  59. object HintText: TStaticText
  60. Left = 232
  61. Top = 64
  62. Width = 97
  63. Height = 17
  64. Alignment = taRightJustify
  65. Anchors = [akTop, akRight]
  66. AutoSize = False
  67. Caption = 'mask hi&nts'
  68. TabOrder = 1
  69. TabStop = True
  70. end
  71. end
  72. object OKBtn: TButton
  73. Left = 109
  74. Top = 109
  75. Width = 75
  76. Height = 25
  77. Anchors = [akRight, akBottom]
  78. Caption = 'OK'
  79. Default = True
  80. ModalResult = 1
  81. TabOrder = 2
  82. end
  83. object CancelBtn: TButton
  84. Left = 194
  85. Top = 109
  86. Width = 75
  87. Height = 25
  88. Anchors = [akRight, akBottom]
  89. Cancel = True
  90. Caption = 'Cancel'
  91. ModalResult = 2
  92. TabOrder = 3
  93. end
  94. object HelpButton: TButton
  95. Left = 277
  96. Top = 109
  97. Width = 75
  98. Height = 25
  99. Anchors = [akRight, akBottom]
  100. Caption = '&Help'
  101. TabOrder = 4
  102. OnClick = HelpButtonClick
  103. end
  104. object ClearButton: TButton
  105. Left = 24
  106. Top = 109
  107. Width = 75
  108. Height = 25
  109. Anchors = [akRight, akBottom]
  110. Caption = '&Clear'
  111. ModalResult = 1
  112. TabOrder = 1
  113. OnClick = ClearButtonClick
  114. end
  115. end