| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- object SynchronizeProgressForm: TSynchronizeProgressForm
- Left = 335
- Top = 260
- BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
- BorderStyle = bsDialog
- Caption = 'Synchronization X'
- ClientHeight = 127
- ClientWidth = 370
- Color = clBtnFace
- ParentFont = True
- OldCreateOrder = False
- Position = poOwnerFormCenter
- DesignSize = (
- 370
- 127)
- PixelsPerInch = 96
- TextHeight = 13
- object Label1: TLabel
- Left = 8
- Top = 9
- Width = 28
- Height = 13
- Caption = 'Local:'
- end
- object Label2: TLabel
- Left = 8
- Top = 29
- Width = 41
- Height = 13
- Caption = 'Remote:'
- end
- object RemoteDirectoryLabel: TPathLabel
- Left = 88
- Top = 29
- Width = 273
- Height = 13
- UnixPath = True
- IndentHorizontal = 0
- IndentVertical = 0
- Align = alNone
- Anchors = [akLeft, akTop, akRight]
- AutoSize = False
- end
- object LocalDirectoryLabel: TPathLabel
- Left = 88
- Top = 9
- Width = 273
- Height = 13
- IndentHorizontal = 0
- IndentVertical = 0
- Align = alNone
- Anchors = [akLeft, akTop, akRight]
- AutoSize = False
- end
- object StartTimeLabel: TLabel
- Left = 88
- Top = 49
- Width = 81
- Height = 13
- AutoSize = False
- Caption = '00:00:00'
- end
- object Label4: TLabel
- Left = 8
- Top = 49
- Width = 51
- Height = 13
- Caption = 'Start time:'
- end
- object Label3: TLabel
- Left = 8
- Top = 69
- Width = 66
- Height = 13
- Caption = 'Time elapsed:'
- end
- object TimeElapsedLabel: TLabel
- Left = 88
- Top = 69
- Width = 79
- Height = 13
- AutoSize = False
- Caption = '00:00:00'
- end
- object CancelButton: TButton
- Left = 105
- Top = 93
- Width = 73
- Height = 25
- Anchors = [akLeft, akBottom]
- Caption = 'Cancel'
- TabOrder = 0
- OnClick = CancelButtonClick
- end
- object MinimizeButton: TButton
- Left = 190
- Top = 93
- Width = 73
- Height = 25
- Anchors = [akTop, akRight]
- Caption = '&Minimize'
- TabOrder = 1
- OnClick = MinimizeButtonClick
- end
- object UpdateTimer: TTimer
- Enabled = False
- OnTimer = UpdateTimerTimer
- Left = 41
- Top = 89
- end
- end
|