VB中msgbox的问题。弹出多个布尔值
第一个方法里的内容:Dima,b,c,dasbooleana=true:b=false:c=true:d=falsemsg(a)ormsg(b)ormsg(c)ormsg...
第一个方法里的内容:
Dim a,b,c,d as boolean
a = true: b = false :c = true :d = false
msg (a) ormsg (b) or msg (c) or msg (d)
sub msg(a as boolean)
msgbox a
end sub
上面的申明写的格式可能不对,但不影响你们阅读。下面的那个Sub应该是 Function,并且返回Boolean值。
我想问的是为什么弹出布尔值的顺序会和调用的顺序不一样。不要考虑我代码是否有毛病,写的是粗,但读懂应该没问题。按我理解应该按顺序弹出TFTF,可实际不是这样。为什么呢 展开
Dim a,b,c,d as boolean
a = true: b = false :c = true :d = false
msg (a) ormsg (b) or msg (c) or msg (d)
sub msg(a as boolean)
msgbox a
end sub
上面的申明写的格式可能不对,但不影响你们阅读。下面的那个Sub应该是 Function,并且返回Boolean值。
我想问的是为什么弹出布尔值的顺序会和调用的顺序不一样。不要考虑我代码是否有毛病,写的是粗,但读懂应该没问题。按我理解应该按顺序弹出TFTF,可实际不是这样。为什么呢 展开
4个回答
展开全部
Private Sub Command1_Click()
Dim a As Boolean
Dim b As Boolean
Dim c As Boolean
Dim d As Boolean
a = True: b = False: c = True: d = False
msg (a): msg (b): msg (c): msg (d)
End Sub
Sub msg(a As Boolean)
MsgBox a
End Sub
按你的方式定义 通常会导致 b,c,d 没有被定义
调用 msg 时 不是用 or 连接 同时我也不知道你为什么要这么连接
Dim a As Boolean
Dim b As Boolean
Dim c As Boolean
Dim d As Boolean
a = True: b = False: c = True: d = False
msg (a): msg (b): msg (c): msg (d)
End Sub
Sub msg(a As Boolean)
MsgBox a
End Sub
按你的方式定义 通常会导致 b,c,d 没有被定义
调用 msg 时 不是用 or 连接 同时我也不知道你为什么要这么连接
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Dim a,b,c,d ,e as boolean
e=true
a = true: b = false :c = true :d = false
if a or b or c or d then
e=true
call mymsg(e)
else
e=false
call mymsg(e)
end if
sub mymsg(amsg as boolean)
msgbox amsg
end sub
e=true
a = true: b = false :c = true :d = false
if a or b or c or d then
e=true
call mymsg(e)
else
e=false
call mymsg(e)
end if
sub mymsg(amsg as boolean)
msgbox amsg
end sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这样做:
msgbox "你好"
me.AppActivate "窗体标题" '把窗体标题改成别一个程序实际的窗体标题
msgbox "你好"
me.AppActivate "窗体标题" '把窗体标题改成别一个程序实际的窗体标题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询