vb6.0一段关于msgbox的代码
发布网友
发布时间:2024-10-04 16:18
我来回答
共1个回答
热心网友
时间:2024-10-07 01:54
Response = MsgBox(Msg, Style, Title)
If MsgBox(Msg, Style, Title) = vbOK Then
你这里调用了2次MsgBox,当然显示2次。改为:Response = MsgBox(Msg, Style, Title)
If Response = vbOK Then
或者'Response = MsgBox(Msg, Style, Title) ‘去掉这句
If MsgBox(Msg, Style, Title) = vbOK Then