fdFolderDlg.dfm 1004 B

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