VB 中label 的数据如何相加
在VB中,如何把每个Label的数据相加。比如Label2的数据为1,Label3的数值为2,Label4的数值为3,Label5的数值为Label2的数值加上Label...
在VB 中,如何把每个Label的数据相加。比如Label2的数据为1,Label3的数值为2,Label4的数值为3,Label5的数值为Label2的数值加上Label3加上Label5的数字,具体要怎么弄,用Label5.caption=Label2.caption+Label3.caption+Label4.caption是不行的,具体要怎么弄,用Label5.Tag=Label2.Tag+Label3.Tag+Label4.Tag也不行,要怎么弄呀,刚学VB 的。
展开
展开全部
Label.caption 是字符串,要进行加法运算,的把字符串型转变为数值型:val(Label.caption)
然后再相加
Label5.caption=val(Label2.caption)+val(Label3.caption)+val(Label4.caption)
然后再相加
Label5.caption=val(Label2.caption)+val(Label3.caption)+val(Label4.caption)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Label5.caption=Str(val(Label2.caption)+val(Label3.caption)+val(Label4.caption))
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Label5=val(Label2)+val(Label3)+val(Label4)+val(Label5)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询