SelectMask.dfm 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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: TXPGroupBox
  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 MaskEdit: THistoryComboBox
  39. Left = 16
  40. Top = 36
  41. Width = 313
  42. Height = 21
  43. ItemHeight = 13
  44. MaxLength = 1000
  45. TabOrder = 0
  46. Text = '*.*'
  47. OnExit = MaskEditExit
  48. end
  49. object IncludingDirectoriesCheck: TCheckBox
  50. Left = 16
  51. Top = 63
  52. Width = 217
  53. Height = 17
  54. Anchors = [akLeft, akTop, akRight]
  55. Caption = 'Including &directories'
  56. TabOrder = 1
  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 &hints'
  67. TabOrder = 2
  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 = 1
  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 = 2
  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 = 3
  101. OnClick = HelpButtonClick
  102. end
  103. end