CopyLocal.dfm 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. object CopyLocalDialog: TCopyLocalDialog
  2. Left = 0
  3. Top = 0
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_copy_local'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'CopyLocalDialog'
  9. ClientHeight = 121
  10. ClientWidth = 511
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -11
  15. Font.Name = 'Tahoma'
  16. Font.Style = []
  17. Position = poOwnerFormCenter
  18. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  19. OnCloseQuery = FormCloseQuery
  20. OnShow = FormShow
  21. DesignSize = (
  22. 511
  23. 121)
  24. TextHeight = 13
  25. object Image: TImage
  26. Left = 8
  27. Top = 11
  28. Width = 32
  29. Height = 32
  30. AutoSize = True
  31. end
  32. object DirectoryLabel: TLabel
  33. Left = 46
  34. Top = 8
  35. Width = 61
  36. Height = 13
  37. Caption = '&Target path:'
  38. FocusControl = DirectoryEdit
  39. end
  40. object DirectoryEdit: THistoryComboBox
  41. Left = 46
  42. Top = 25
  43. Width = 372
  44. Height = 21
  45. AutoComplete = False
  46. Anchors = [akLeft, akTop, akRight]
  47. DropDownCount = 16
  48. TabOrder = 0
  49. Text = 'DirectoryEdit'
  50. OnExit = DirectoryEditExit
  51. end
  52. object OkButton: TButton
  53. Left = 260
  54. Top = 55
  55. Width = 75
  56. Height = 25
  57. Anchors = [akTop, akRight]
  58. Caption = 'OK'
  59. Default = True
  60. ModalResult = 1
  61. TabOrder = 3
  62. end
  63. object CancelButton: TButton
  64. Left = 343
  65. Top = 55
  66. Width = 75
  67. Height = 25
  68. Anchors = [akTop, akRight]
  69. Cancel = True
  70. Caption = 'Cancel'
  71. ModalResult = 2
  72. TabOrder = 4
  73. end
  74. object LocalDirectoryBrowseButton: TButton
  75. Left = 427
  76. Top = 23
  77. Width = 75
  78. Height = 25
  79. Caption = 'B&rowse...'
  80. TabOrder = 1
  81. OnClick = LocalDirectoryBrowseButtonClick
  82. end
  83. object HelpButton: TButton
  84. Left = 427
  85. Top = 55
  86. Width = 75
  87. Height = 25
  88. Anchors = [akTop, akRight]
  89. Caption = '&Help'
  90. TabOrder = 5
  91. OnClick = HelpButtonClick
  92. end
  93. object NeverShowAgainCheck: TCheckBox
  94. Left = 12
  95. Top = 58
  96. Width = 242
  97. Height = 17
  98. Caption = '&Do not show this dialog box again'
  99. TabOrder = 2
  100. end
  101. object ShortCutHintPanel: TPanel
  102. Left = 0
  103. Top = 87
  104. Width = 511
  105. Height = 34
  106. Align = alBottom
  107. BevelOuter = bvNone
  108. ParentBackground = False
  109. TabOrder = 6
  110. object ShortCutHintLabel: TLabel
  111. Left = 12
  112. Top = 3
  113. Width = 490
  114. Height = 28
  115. AutoSize = False
  116. Caption =
  117. 'In Commander interface the keyboard shortcut F5 is used to trans' +
  118. 'fer files. Should you want to use it to refresh a file panel, cl' +
  119. 'ick here to go to preferences.'
  120. ShowAccelChar = False
  121. WordWrap = True
  122. OnClick = ShortCutHintLabelClick
  123. end
  124. end
  125. end