RemoteTransfer.dfm 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 = 181
  10. ClientWidth = 464
  11. Color = clBtnFace
  12. ParentFont = True
  13. Position = poOwnerFormCenter
  14. OnCloseQuery = FormCloseQuery
  15. OnShow = FormShow
  16. DesignSize = (
  17. 464
  18. 181)
  19. TextHeight = 15
  20. object Group: TGroupBox
  21. Left = 8
  22. Top = 8
  23. Width = 448
  24. Height = 133
  25. Anchors = [akLeft, akTop, akRight, akBottom]
  26. TabOrder = 0
  27. DesignSize = (
  28. 448
  29. 133)
  30. object SessionLabel: TLabel
  31. Left = 47
  32. Top = 9
  33. Width = 77
  34. Height = 15
  35. Caption = 'Target &session:'
  36. FocusControl = SessionCombo
  37. end
  38. object Label3: TLabel
  39. Left = 47
  40. Top = 59
  41. Width = 104
  42. Height = 15
  43. Caption = 'Target remote &path:'
  44. FocusControl = DirectoryEdit
  45. end
  46. object Image: TImage
  47. Left = 9
  48. Top = 12
  49. Width = 32
  50. Height = 32
  51. AutoSize = True
  52. end
  53. object SessionCombo: TComboBox
  54. Left = 47
  55. Top = 30
  56. Width = 392
  57. Height = 23
  58. Style = csDropDownList
  59. Anchors = [akLeft, akTop, akRight]
  60. DropDownCount = 16
  61. MaxLength = 250
  62. TabOrder = 0
  63. OnChange = SessionComboChange
  64. end
  65. object DirectoryEdit: THistoryComboBox
  66. Left = 47
  67. Top = 77
  68. Width = 392
  69. Height = 23
  70. AutoComplete = False
  71. Anchors = [akLeft, akTop, akRight]
  72. MaxLength = 250
  73. TabOrder = 1
  74. OnChange = ControlChange
  75. end
  76. object NotDirectCopyCheck: TCheckBox
  77. Left = 49
  78. Top = 106
  79. Width = 390
  80. Height = 17
  81. Anchors = [akLeft, akTop, akRight]
  82. Caption = 'Duplicate via local &temporary copy'
  83. TabOrder = 2
  84. OnClick = NotDirectCopyCheckClick
  85. end
  86. end
  87. object OkButton: TButton
  88. Left = 204
  89. Top = 148
  90. Width = 80
  91. Height = 25
  92. Anchors = [akRight, akBottom]
  93. Caption = 'OK'
  94. Default = True
  95. ModalResult = 1
  96. TabOrder = 1
  97. end
  98. object CancelButton: TButton
  99. Left = 290
  100. Top = 148
  101. Width = 80
  102. Height = 25
  103. Anchors = [akRight, akBottom]
  104. Cancel = True
  105. Caption = 'Cancel'
  106. ModalResult = 2
  107. TabOrder = 2
  108. end
  109. object HelpButton: TButton
  110. Left = 376
  111. Top = 148
  112. Width = 80
  113. Height = 25
  114. Anchors = [akRight, akBottom]
  115. Caption = '&Help'
  116. TabOrder = 3
  117. OnClick = HelpButtonClick
  118. end
  119. end