问题描述
嗨伙计,
我有VB项目,它在XP模式下使用vb6 IDE完美编译/建立。
我的目标是自动化部署过程,所以我尝试使用VBC在命令行中构建这个项目。
但是在编译vb项目时窗口7使用VBC.exe和cmd抛出以下错误/异常。
示例:
错误:BC30203:预期的标识符。 />
错误:BC30481:'class'语句必须以匹配的结束类结束。
错误:BC30617:'模块'语句只能在文件或命名空间级别发生。
有没有人有任何建议的想法在这里缺少什么。
提前谢谢。
Hi Folks,
I have VB porject, which is compiling/buidling perfectly using vb6 IDE in XP mode.
My objective is to automate the deployment process, so am trying to build this project in command line using VBC.
But while compiling vb project in window 7 using VBC.exe and cmd its throwing following error/exception.
Example:
error: BC30203: Identifier expected.
error: BC30481:'class' statement must end with matching end class.
error: BC30617:'Module' statement can occur only at file or namespace level.
Does anybody have any suggestion ideas what am missing here.
Thanks in advance.
推荐答案
"C:\Program Files\Microsoft Visual Studio\VB98\vb6.exe" /m n:\source\vb6\application\app.vbp"
If '%ERRORLEVEL%'=='1' Goto Error
这篇关于使用VBC抛出错误编译vb项目。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!