ConvertPath.dfm 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. object frmConvertPath: TfrmConvertPath
  2. Left = 443
  3. Top = 357
  4. BorderStyle = bsSingle
  5. Caption = 'Convert Path'
  6. ClientHeight = 100
  7. ClientWidth = 416
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. FormStyle = fsStayOnTop
  15. OldCreateOrder = False
  16. Position = poOwnerFormCenter
  17. DesignSize = (
  18. 416
  19. 100)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object btnClose: TButton
  23. Left = 335
  24. Top = 70
  25. Width = 76
  26. Height = 25
  27. Anchors = [akRight, akBottom]
  28. Cancel = True
  29. Caption = '&Close'
  30. ModalResult = 1
  31. TabOrder = 0
  32. end
  33. object btnConvert: TButton
  34. Left = 255
  35. Top = 70
  36. Width = 76
  37. Height = 25
  38. Anchors = [akRight, akBottom]
  39. Cancel = True
  40. Caption = '&Convert'
  41. Default = True
  42. TabOrder = 1
  43. OnClick = btnConvertClick
  44. end
  45. object txtPathToConvert: TEdit
  46. Left = 7
  47. Top = 8
  48. Width = 383
  49. Height = 21
  50. Anchors = [akLeft, akTop, akRight]
  51. TabOrder = 2
  52. end
  53. object btnBrowsePath: TButton
  54. Left = 395
  55. Top = 12
  56. Width = 16
  57. Height = 16
  58. Anchors = [akTop, akRight]
  59. Caption = '...'
  60. TabOrder = 3
  61. OnClick = btnBrowsePathClick
  62. end
  63. object txtConvertedPath: TEdit
  64. Left = 8
  65. Top = 40
  66. Width = 401
  67. Height = 21
  68. Color = cl3DLight
  69. ReadOnly = True
  70. TabOrder = 4
  71. end
  72. object jvSelectDir: TJvBrowseForFolderDialog
  73. Title = 'Select Directory'
  74. Left = 8
  75. Top = 64
  76. end
  77. end