1
0

SynchronizeProgress.dfm 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. object SynchronizeProgressForm: TSynchronizeProgressForm
  2. Left = 335
  3. Top = 260
  4. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  5. BorderStyle = bsDialog
  6. Caption = 'Synchronization X'
  7. ClientHeight = 127
  8. ClientWidth = 370
  9. Color = clBtnFace
  10. ParentFont = True
  11. OldCreateOrder = False
  12. Position = poOwnerFormCenter
  13. DesignSize = (
  14. 370
  15. 127)
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object Label1: TLabel
  19. Left = 8
  20. Top = 9
  21. Width = 28
  22. Height = 13
  23. Caption = 'Local:'
  24. end
  25. object Label2: TLabel
  26. Left = 8
  27. Top = 29
  28. Width = 41
  29. Height = 13
  30. Caption = 'Remote:'
  31. end
  32. object RemoteDirectoryLabel: TPathLabel
  33. Left = 88
  34. Top = 29
  35. Width = 273
  36. Height = 13
  37. UnixPath = True
  38. IndentHorizontal = 0
  39. IndentVertical = 0
  40. Align = alNone
  41. Anchors = [akLeft, akTop, akRight]
  42. AutoSize = False
  43. end
  44. object LocalDirectoryLabel: TPathLabel
  45. Left = 88
  46. Top = 9
  47. Width = 273
  48. Height = 13
  49. IndentHorizontal = 0
  50. IndentVertical = 0
  51. Align = alNone
  52. Anchors = [akLeft, akTop, akRight]
  53. AutoSize = False
  54. end
  55. object StartTimeLabel: TLabel
  56. Left = 88
  57. Top = 49
  58. Width = 81
  59. Height = 13
  60. AutoSize = False
  61. Caption = '00:00:00'
  62. end
  63. object Label4: TLabel
  64. Left = 8
  65. Top = 49
  66. Width = 51
  67. Height = 13
  68. Caption = 'Start time:'
  69. end
  70. object Label3: TLabel
  71. Left = 8
  72. Top = 69
  73. Width = 66
  74. Height = 13
  75. Caption = 'Time elapsed:'
  76. end
  77. object TimeElapsedLabel: TLabel
  78. Left = 88
  79. Top = 69
  80. Width = 79
  81. Height = 13
  82. AutoSize = False
  83. Caption = '00:00:00'
  84. end
  85. object CancelButton: TButton
  86. Left = 105
  87. Top = 93
  88. Width = 73
  89. Height = 25
  90. Anchors = [akLeft, akBottom]
  91. Caption = 'Cancel'
  92. TabOrder = 0
  93. OnClick = CancelButtonClick
  94. end
  95. object MinimizeButton: TButton
  96. Left = 190
  97. Top = 93
  98. Width = 73
  99. Height = 25
  100. Anchors = [akTop, akRight]
  101. Caption = '&Minimize'
  102. TabOrder = 1
  103. OnClick = MinimizeButtonClick
  104. end
  105. object UpdateTimer: TTimer
  106. Enabled = False
  107. OnTimer = UpdateTimerTimer
  108. Left = 41
  109. Top = 89
  110. end
  111. end