Setup.SelectFolderForm.dfm 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. object SelectFolderForm: TSelectFolderForm
  2. Left = 200
  3. Top = 108
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = 'SelectFolderForm'
  7. ClientHeight = 337
  8. ClientWidth = 349
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. PopupMode = pmAuto
  16. Scaled = False
  17. DesignSize = (
  18. 349
  19. 337)
  20. TextHeight = 13
  21. object CancelButton: TNewButton
  22. Left = 320
  23. Top = 305
  24. Width = 17
  25. Height = 23
  26. Anchors = [akRight, akBottom]
  27. Cancel = True
  28. Caption = '*'
  29. ModalResult = 2
  30. TabOrder = 4
  31. end
  32. object OKButton: TNewButton
  33. Left = 304
  34. Top = 305
  35. Width = 16
  36. Height = 23
  37. Anchors = [akRight, akBottom]
  38. Caption = '*'
  39. Default = True
  40. Enabled = False
  41. ModalResult = 1
  42. TabOrder = 3
  43. end
  44. object NewFolderButton: TNewButton
  45. Left = 12
  46. Top = 305
  47. Width = 17
  48. Height = 23
  49. Anchors = [akLeft, akBottom]
  50. Cancel = True
  51. Caption = '*'
  52. Enabled = False
  53. TabOrder = 2
  54. OnClick = NewFolderButtonClick
  55. end
  56. object PathEdit: TNewPathEdit
  57. Left = 16
  58. Top = 36
  59. Width = 317
  60. Height = 21
  61. Anchors = [akLeft, akTop, akRight]
  62. TabOrder = 1
  63. OnChange = PathEditChange
  64. end
  65. object BrowseLabel: TNewStaticText
  66. Left = 12
  67. Top = 12
  68. Width = 325
  69. Height = 14
  70. Anchors = [akLeft, akTop, akRight]
  71. AutoSize = False
  72. Caption = '*'
  73. TabOrder = 0
  74. WordWrap = True
  75. end
  76. end