fdFolderSelect.dfm 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. object FolderSel: TFolderSel
  2. Left = 245
  3. Top = 108
  4. BorderStyle = bsDialog
  5. Caption = 'Folder selection'
  6. ClientHeight = 341
  7. ClientWidth = 317
  8. Color = clBtnFace
  9. ParentFont = True
  10. Position = poScreenCenter
  11. TextHeight = 15
  12. object Bevel1: TBevel
  13. Left = 8
  14. Top = 8
  15. Width = 297
  16. Height = 161
  17. Shape = bsFrame
  18. end
  19. object Label1: TLabel
  20. Left = 120
  21. Top = 16
  22. Width = 68
  23. Height = 15
  24. Caption = 'Select folder:'
  25. end
  26. object OKBtn: TButton
  27. Left = 79
  28. Top = 308
  29. Width = 75
  30. Height = 25
  31. Caption = 'OK'
  32. Default = True
  33. ModalResult = 1
  34. TabOrder = 0
  35. end
  36. object CancelBtn: TButton
  37. Left = 159
  38. Top = 308
  39. Width = 75
  40. Height = 25
  41. Cancel = True
  42. Caption = 'Cancel'
  43. ModalResult = 2
  44. TabOrder = 1
  45. end
  46. object ShellView: TShellTreeView
  47. Left = 16
  48. Top = 32
  49. Width = 281
  50. Height = 265
  51. ObjectTypes = [otFolders]
  52. Root = 'rfDesktop'
  53. UseShellImages = True
  54. AutoRefresh = False
  55. Indent = 19
  56. ParentColor = False
  57. RightClickSelect = True
  58. ShowRoot = False
  59. TabOrder = 2
  60. end
  61. end