SelectMask.dfm 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 = 'Select'
  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. ItemHeight = 13
  52. MaxLength = 1000
  53. TabOrder = 0
  54. Text = '*.*'
  55. OnExit = MaskEditExit
  56. end
  57. object HintText: TStaticText
  58. Left = 232
  59. Top = 64
  60. Width = 97
  61. Height = 17
  62. Alignment = taRightJustify
  63. Anchors = [akTop, akRight]
  64. AutoSize = False
  65. Caption = 'mask &hints'
  66. TabOrder = 1
  67. TabStop = True
  68. end
  69. end
  70. object OKBtn: TButton
  71. Left = 109
  72. Top = 109
  73. Width = 75
  74. Height = 25
  75. Anchors = [akRight, akBottom]
  76. Caption = 'OK'
  77. Default = True
  78. ModalResult = 1
  79. TabOrder = 1
  80. end
  81. object CancelBtn: TButton
  82. Left = 194
  83. Top = 109
  84. Width = 75
  85. Height = 25
  86. Anchors = [akRight, akBottom]
  87. Cancel = True
  88. Caption = 'Cancel'
  89. ModalResult = 2
  90. TabOrder = 2
  91. end
  92. object HelpButton: TButton
  93. Left = 277
  94. Top = 109
  95. Width = 75
  96. Height = 25
  97. Anchors = [akRight, akBottom]
  98. Caption = '&Help'
  99. TabOrder = 3
  100. OnClick = HelpButtonClick
  101. end
  102. end