SelectMask.dfm 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. object SelectMaskDialog: TSelectMaskDialog
  2. Left = 369
  3. Top = 257
  4. BorderStyle = bsDialog
  5. Caption = 'Select'
  6. ClientHeight = 145
  7. ClientWidth = 361
  8. Color = clBtnFace
  9. ParentFont = True
  10. OldCreateOrder = True
  11. OnCloseQuery = FormCloseQuery
  12. PixelsPerInch = 96
  13. TextHeight = 13
  14. object MaskGroup: TXPGroupBox
  15. Left = 8
  16. Top = 6
  17. Width = 345
  18. Height = 96
  19. TabOrder = 2
  20. object Label1: TLabel
  21. Left = 11
  22. Top = 19
  23. Width = 56
  24. Height = 13
  25. Caption = 'Enter &mask:'
  26. FocusControl = MaskEdit
  27. end
  28. object Label2: TLabel
  29. Left = 58
  30. Top = 68
  31. Width = 274
  32. Height = 13
  33. Alignment = taRightJustify
  34. Caption = 'File masks are separated by semicolon (*.txt; picture[1-9].*)'
  35. end
  36. object MaskEdit: THistoryComboBox
  37. Left = 91
  38. Top = 15
  39. Width = 241
  40. Height = 21
  41. ItemHeight = 13
  42. MaxLength = 255
  43. TabOrder = 0
  44. Text = '*.*'
  45. end
  46. object IncludingDirectoriesCheck: TCheckBox
  47. Left = 91
  48. Top = 44
  49. Width = 241
  50. Height = 17
  51. Caption = 'Including &directories'
  52. TabOrder = 1
  53. end
  54. end
  55. object OKBtn: TButton
  56. Left = 191
  57. Top = 112
  58. Width = 75
  59. Height = 25
  60. Caption = 'OK'
  61. Default = True
  62. ModalResult = 1
  63. TabOrder = 0
  64. end
  65. object CancelBtn: TButton
  66. Left = 279
  67. Top = 112
  68. Width = 75
  69. Height = 25
  70. Cancel = True
  71. Caption = 'Cancel'
  72. ModalResult = 2
  73. TabOrder = 1
  74. end
  75. end