在visual basic中,当在“frmMain事件:加载”时,我收到以下错误
The type initializer for 'projData.projDataModule' threw an exception.
运行代码时:
var = 180
“var”在projDataModule中定义为
Module projDataModule
Public var As Double
End Module
当我重建解决方案时,它会显示“0错误,0警告”并且实际上会编译,但错误列表会显示以下错误:
Error 1 Custom tool error: Failed to generate file: There is an error in XML document (1, 1). I:\Documents and Settings\Bill\Desktop\Projects\Data\My Project\Application.myapp 1 1 Data
Application.myapp是一个xml文件,其中包含以下内容:
<?xml version="1.0" encoding="utf-16"?>
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MySubMain>true</MySubMain>
<MainForm>frmMain</MainForm>
<SingleInstance>false</SingleInstance>
<ShutdownMode>0</ShutdownMode>
<EnableVisualStyles>true</EnableVisualStyles>
<AuthenticationMode>0</AuthenticationMode>
<SplashScreen>frmSplash</SplashScreen>
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
</MyApplicationData>
任何想法或帮助都将不胜感激。提前谢谢。
答案 0 :(得分:0)
我遇到了同样的问题,但是我在同一个解决方案中有多个项目,所以有些项目正在运行,有些则不是这样,我之间跟踪了XML文件,并通过将utf-16更改为utf-8来修复它