0

我对视觉基础相当陌生。我试图制作一个根据用户输入为您生成代码的程序。但是每当我单击生成时,我都会收到此错误

Invalid CastException was unhandled.
Conversion from string "//Generated using MAYAN.  Minecr" to type 'Double' is not valid." 

它说它受以下行的影响:

Code_Viewer.TextCodeViewer.Text = "//Generated using EASYMC.  EasyModCreator.tk" + vbNewLine

这是我的源代码..

感谢任何帮助的人!:)

http://pastebin.com/wHBbqK5K

我决定把它贴在 pastebin 上,这样更容易阅读。

4

1 回答 1

0

使用& 运算符而不是+ 运算符,例如:

Code_Viewer.TextCodeViewer.Text = "//Generated using EASYMC.  EasyModCreator.tk" & vbNewLine
于 2012-07-23T12:38:17.597 回答