Console.dfm 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. object ConsoleDialog: TConsoleDialog
  2. Left = 349
  3. Top = 169
  4. Width = 567
  5. Height = 431
  6. HelpType = htKeyword
  7. HelpKeyword = 'ui_console'
  8. BorderIcons = [biSystemMenu, biMaximize, biHelp]
  9. Caption = 'Console'
  10. Color = clBtnFace
  11. Constraints.MinHeight = 250
  12. Constraints.MinWidth = 380
  13. ParentFont = True
  14. OldCreateOrder = True
  15. Position = poMainFormCenter
  16. DesignSize = (
  17. 559
  18. 404)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Bevel1: TBevel
  22. Left = 0
  23. Top = 0
  24. Width = 559
  25. Height = 78
  26. Align = alTop
  27. Shape = bsBottomLine
  28. end
  29. object Label1: TLabel
  30. Left = 13
  31. Top = 13
  32. Width = 74
  33. Height = 13
  34. Caption = 'Enter &command'
  35. FocusControl = CommandEdit
  36. end
  37. object Label2: TLabel
  38. Left = 13
  39. Top = 56
  40. Width = 80
  41. Height = 13
  42. Caption = 'Current directory:'
  43. end
  44. object Label4: TLabel
  45. Left = 13
  46. Top = 34
  47. Width = 286
  48. Height = 13
  49. Caption = 'Warning: Do NOT execute commands that require user-input'
  50. end
  51. object DirectoryLabel: TPathLabel
  52. Left = 120
  53. Top = 56
  54. Width = 337
  55. Height = 13
  56. IndentHorizontal = 0
  57. IndentVertical = 0
  58. Align = alNone
  59. Anchors = [akLeft, akTop, akRight]
  60. AutoSize = False
  61. end
  62. object OutputMemo: TMemo
  63. Left = 0
  64. Top = 78
  65. Width = 559
  66. Height = 326
  67. TabStop = False
  68. Align = alClient
  69. Color = clBtnFace
  70. ReadOnly = True
  71. ScrollBars = ssBoth
  72. TabOrder = 4
  73. WantReturns = False
  74. end
  75. object CancelBtn: TButton
  76. Left = 472
  77. Top = 7
  78. Width = 75
  79. Height = 25
  80. Anchors = [akTop, akRight]
  81. Cancel = True
  82. Caption = 'Close'
  83. ModalResult = 2
  84. TabOrder = 2
  85. end
  86. object CommandEdit: THistoryComboBox
  87. Left = 120
  88. Top = 9
  89. Width = 251
  90. Height = 21
  91. AutoComplete = False
  92. Anchors = [akLeft, akTop, akRight]
  93. ItemHeight = 13
  94. MaxLength = 250
  95. TabOrder = 0
  96. OnChange = CommandEditChange
  97. end
  98. object ExecuteButton: TButton
  99. Left = 384
  100. Top = 7
  101. Width = 75
  102. Height = 25
  103. Anchors = [akTop, akRight]
  104. Caption = '&Execute'
  105. Default = True
  106. TabOrder = 1
  107. OnClick = ExecuteButtonClick
  108. end
  109. object HelpButton: TButton
  110. Left = 472
  111. Top = 42
  112. Width = 75
  113. Height = 25
  114. Anchors = [akTop, akRight]
  115. Caption = '&Help'
  116. TabOrder = 3
  117. OnClick = HelpButtonClick
  118. end
  119. end