SelectMask.dfm 2.4 KB

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