RemoteTransfer.dfm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. object RemoteTransferDialog: TRemoteTransferDialog
  2. Left = 296
  3. Top = 235
  4. HelpType = htKeyword
  5. HelpKeyword = 'task_move_duplicate'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'RemoteTransferDialog'
  9. ClientHeight = 183
  10. ClientWidth = 330
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = False
  14. Position = poMainFormCenter
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 330
  19. 183)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object SymlinkGroup: TGroupBox
  23. Left = 8
  24. Top = 6
  25. Width = 314
  26. Height = 135
  27. Anchors = [akLeft, akTop, akRight, akBottom]
  28. TabOrder = 0
  29. DesignSize = (
  30. 314
  31. 135)
  32. object SessionLabel: TLabel
  33. Left = 11
  34. Top = 16
  35. Width = 72
  36. Height = 13
  37. Caption = 'Target &session:'
  38. FocusControl = SessionCombo
  39. end
  40. object Label2: TLabel
  41. Left = 11
  42. Top = 64
  43. Width = 112
  44. Height = 13
  45. Caption = '&Target remote &directory:'
  46. FocusControl = DirectoryEdit
  47. end
  48. object SessionCombo: TComboBox
  49. Left = 11
  50. Top = 32
  51. Width = 292
  52. Height = 21
  53. Style = csDropDownList
  54. Anchors = [akLeft, akTop, akRight]
  55. ItemHeight = 13
  56. MaxLength = 250
  57. TabOrder = 0
  58. OnChange = SessionComboChange
  59. end
  60. object DirectoryEdit: THistoryComboBox
  61. Left = 11
  62. Top = 80
  63. Width = 292
  64. Height = 21
  65. Anchors = [akLeft, akTop, akRight]
  66. ItemHeight = 13
  67. MaxLength = 250
  68. TabOrder = 1
  69. OnChange = ControlChange
  70. end
  71. object NotDirectCopyCheck: TCheckBox
  72. Left = 17
  73. Top = 109
  74. Width = 288
  75. Height = 17
  76. Anchors = [akLeft, akTop, akRight]
  77. Caption = 'Duplicate via local &temporary copy'
  78. TabOrder = 2
  79. OnClick = NotDirectCopyCheckClick
  80. end
  81. end
  82. object OkButton: TButton
  83. Left = 78
  84. Top = 150
  85. Width = 75
  86. Height = 25
  87. Anchors = [akRight, akBottom]
  88. Caption = 'OK'
  89. Default = True
  90. ModalResult = 1
  91. TabOrder = 1
  92. end
  93. object CancelButton: TButton
  94. Left = 162
  95. Top = 150
  96. Width = 75
  97. Height = 25
  98. Anchors = [akRight, akBottom]
  99. Cancel = True
  100. Caption = 'Cancel'
  101. ModalResult = 2
  102. TabOrder = 2
  103. end
  104. object HelpButton: TButton
  105. Left = 246
  106. Top = 150
  107. Width = 75
  108. Height = 25
  109. Anchors = [akRight, akBottom]
  110. Caption = '&Help'
  111. TabOrder = 3
  112. OnClick = HelpButtonClick
  113. end
  114. end