Console.dfm 2.2 KB

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