更改控制台大小
Delphi中的简单问题。我创建了一个控制台应用程序,如果控制台窗口的高度少于 80 行,我需要将其高度更改为 80 行。这需要从代码中完成,并且实际上是在代码内有条件的。 (即,当发生错误时,它会增加控制台的大小,以便整个(巨大的)错误报告可见。)
请记住,这是一个控制台应用程序!当它启动时,它使用默认控制台,我需要更改它!
Simple problem in Delphi. I've created a console application and I need to change the height of the console window to 80 lines, if it's less than 80 lines. This need to be done from code and is actually conditional within the code. (I.e. when an error occurs, it increases the size of the console so the whole (huge) error report is visible.)
Keep in mind that this is a console application! When it starts, it uses the default console, which I need to alter!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用 SetConsoleWindowInfo() 时,传递到控制台的 Left 和 Top 值至少需要为 1,而不是 0。问题已解决。
我现在这样做:
When calling SetConsoleWindowInfo() the values for Left and Top that are passed to the console need to at least be 1, not 0. Problem solved.
I now do this: