RemoteTransfer.dfm 2.7 KB

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