RemoteTransfer.dfm 2.7 KB

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