FolderDialog.dfm 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. object FDialog: TFDialog
  2. Left = 267
  3. Top = 134
  4. ActiveControl = Edit1
  5. BorderStyle = bsDialog
  6. Caption = 'Create Folder'
  7. ClientHeight = 107
  8. ClientWidth = 169
  9. Color = clBtnFace
  10. ParentFont = True
  11. OldCreateOrder = True
  12. Position = poMainFormCenter
  13. PixelsPerInch = 96
  14. TextHeight = 13
  15. object Bevel1: TBevel
  16. Left = 8
  17. Top = 8
  18. Width = 153
  19. Height = 57
  20. Shape = bsFrame
  21. end
  22. object Label1: TLabel
  23. Left = 40
  24. Top = 16
  25. Width = 90
  26. Height = 13
  27. Caption = 'Enter folder name:'
  28. end
  29. object OKBtn: TButton
  30. Left = 7
  31. Top = 76
  32. Width = 75
  33. Height = 25
  34. Caption = 'OK'
  35. Default = True
  36. ModalResult = 1
  37. TabOrder = 0
  38. end
  39. object CancelBtn: TButton
  40. Left = 87
  41. Top = 76
  42. Width = 75
  43. Height = 25
  44. Cancel = True
  45. Caption = 'Cancel'
  46. ModalResult = 2
  47. TabOrder = 1
  48. end
  49. object Edit1: TEdit
  50. Left = 24
  51. Top = 32
  52. Width = 121
  53. Height = 21
  54. TabOrder = 2
  55. end
  56. end