0

单击 Visual Basic 2010 中的特定子例程时,应用程序崩溃,仅显示错误消息“Microsoft Visual Basic 2010 [Express] 遇到问题,需要关闭。”

日志中没有任何内容,安全模式也无济于事。

4

2 回答 2

0

当我遇到这个问题时,我发现这是由于连续超过 400 行。

例如:

Dim someString As String
someString = "some text and then a line continuation " & _
             "and then some more text for 400 lines " & _
             ... & _
             "and then finish the string"

为了解决这个问题,我只需要通过在一行上组合多个“行”来使我的代码更草率。

希望这对其他人有帮助!

于 2013-02-19T17:04:54.217 回答
0

听起来您正在单击解决方案空间中的模块或 .vb 文件。尝试右键单击,然后尽可能“编辑代码”。如果有一个 Interop 对象,也许是一个没有注册 ion Windows 的控件 (.OCX),那么 VS 将会崩溃——保证!

于 2013-02-20T05:39:07.430 回答