选择“打开”选项后,QBasic 立即崩溃。菜单项
不确定这是否是一个可以接受的问题,但我认为它是一个 IDE,所以...
我正在尝试在 qb4.5 中编写一个小程序,它已经在我的计算机(XP SP3)上愉快地工作了一段时间。由于某种原因,它现在变得缓慢且容易出错。正如标题所示,如果我尝试打开一个文件,QB 就会崩溃。病毒最近攻击了我的注册表(除其他外),在删除它并修复许多条目后,可能有一些我尚未更正的条目可能会影响此问题。
Not sure if this is even an acceptable question, but I figured it's an IDE so...
I'm trying to write a small program in qb4.5, which has happily worked on my computer (XP SP3) for a while now. For some reason though it is now sluggish and error-prone. As the title reads, if I try to open a file then QB crashes out. A virus recently attacked my registry (among other things), and after removing it and fixing many entries there are probably some entries that I haven't corrected that may affect this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信 QuickBasic 在其 IDE 中使用 MSDOS 编辑命令。据推测该程序受到了病毒的影响。如果是这种情况,您在 EDIT 中打开其他文件也应该会遇到问题。
I believe that QuickBasic uses the MSDOS edit command for its IDE. Presumable that program is affected by the virus. If that is the case, you should have problems opening other files in EDIT too.
QuickBASIC IDE (->
QB.EXE
) 是一个独立的应用程序。 QuickBASIC 不使用 MS DOS 编辑器 (EDIT.COM
) 作为输入屏幕。 QB IDE 提供了一些您在 EDIT.COM 中找不到的功能,例如 SUB/FUNCTION 浏览器、实时语法检查、编译+启动菜单……QB IDE 的样式看起来与
EDIT.COM
的外观非常相似,但它是一个不同的应用程序。事实上,无需安装 EDIT.COM,就可以在 DOSBOX 中运行 QB.EXE。The QuickBASIC IDE (->
QB.EXE
) is a self-contained application. QuickBASIC doesn't use the MS DOS editor (EDIT.COM
) as an input screen. The QB IDE offers several features you won't find inEDIT.COM
, for example a SUB/FUNCTION browser, live syntax checking, compile+launch menu, ...The styling of the QB IDE looks very similar to the appearance of
EDIT.COM
but it's a different application. In fact, one can run QB.EXE in DOSBOX without even having EDIT.COM installed.