RemoteTransfer.dfm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. object RemoteTransferDialog: TRemoteTransferDialog
  2. Left = 296
  3. Top = 235
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_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 = poOwnerFormCenter
  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 = 74
  36. Height = 13
  37. Caption = 'Target &session:'
  38. FocusControl = SessionCombo
  39. end
  40. object Label2: TLabel
  41. Left = 11
  42. Top = 64
  43. Width = 119
  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. MaxLength = 250
  56. TabOrder = 0
  57. OnChange = SessionComboChange
  58. end
  59. object DirectoryEdit: THistoryComboBox
  60. Left = 11
  61. Top = 80
  62. Width = 292
  63. Height = 21
  64. AutoComplete = False
  65. Anchors = [akLeft, akTop, akRight]
  66. MaxLength = 250
  67. TabOrder = 1
  68. OnChange = ControlChange
  69. end
  70. object NotDirectCopyCheck: TCheckBox
  71. Left = 17
  72. Top = 109
  73. Width = 288
  74. Height = 17
  75. Anchors = [akLeft, akTop, akRight]
  76. Caption = 'Duplicate via local &temporary copy'
  77. TabOrder = 2
  78. OnClick = NotDirectCopyCheckClick
  79. end
  80. end
  81. object OkButton: TButton
  82. Left = 78
  83. Top = 150
  84. Width = 75
  85. Height = 25
  86. Anchors = [akRight, akBottom]
  87. Caption = 'OK'
  88. Default = True
  89. ModalResult = 1
  90. TabOrder = 1
  91. end
  92. object CancelButton: TButton
  93. Left = 162
  94. Top = 150
  95. Width = 75
  96. Height = 25
  97. Anchors = [akRight, akBottom]
  98. Cancel = True
  99. Caption = 'Cancel'
  100. ModalResult = 2
  101. TabOrder = 2
  102. end
  103. object HelpButton: TButton
  104. Left = 246
  105. Top = 150
  106. Width = 75
  107. Height = 25
  108. Anchors = [akRight, akBottom]
  109. Caption = '&Help'
  110. TabOrder = 3
  111. OnClick = HelpButtonClick
  112. end
  113. end