我的错误是编译错误:预期=
msgbox (“最终得分:”& "P1score“& P1 & "P2score”& P2 & "P3score“& P3 & "P4score”& P4,vbOKOnly,"GameOver")
我在想怎么解决这个问题
发布于 2013-11-21 04:46:56
MsgBox是一个返回值(MSDN)的函数。
如果您不关心返回值,那么:
Call MsgBox(.....)如果你在乎的话:
returnValue = MsgBox(.....)您可能需要首先定义“returnValue”。
https://stackoverflow.com/questions/20112553
复制相似问题