SelectMask.dfm 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. OnShow = FormShow
  17. DesignSize = (
  18. 361
  19. 142)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object MaskGroup: TGroupBox
  23. Left = 8
  24. Top = 6
  25. Width = 345
  26. Height = 94
  27. Anchors = [akLeft, akTop, akRight, akBottom]
  28. TabOrder = 0
  29. DesignSize = (
  30. 345
  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 = 217
  44. Height = 17
  45. Caption = 'Apply to &directories'
  46. TabOrder = 2
  47. end
  48. object MaskEdit: THistoryComboBox
  49. Left = 16
  50. Top = 36
  51. Width = 313
  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 = 232
  62. Top = 64
  63. Width = 97
  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. end
  73. object OKBtn: TButton
  74. Left = 109
  75. Top = 109
  76. Width = 75
  77. Height = 25
  78. Anchors = [akRight, akBottom]
  79. Caption = 'OK'
  80. Default = True
  81. ModalResult = 1
  82. TabOrder = 2
  83. end
  84. object CancelBtn: TButton
  85. Left = 194
  86. Top = 109
  87. Width = 75
  88. Height = 25
  89. Anchors = [akRight, akBottom]
  90. Cancel = True
  91. Caption = 'Cancel'
  92. ModalResult = 2
  93. TabOrder = 3
  94. end
  95. object HelpButton: TButton
  96. Left = 277
  97. Top = 109
  98. Width = 75
  99. Height = 25
  100. Anchors = [akRight, akBottom]
  101. Caption = '&Help'
  102. TabOrder = 4
  103. OnClick = HelpButtonClick
  104. end
  105. object ClearButton: TButton
  106. Left = 24
  107. Top = 109
  108. Width = 75
  109. Height = 25
  110. Anchors = [akRight, akBottom]
  111. Caption = '&Clear'
  112. ModalResult = 1
  113. TabOrder = 1
  114. OnClick = ClearButtonClick
  115. end
  116. end