VB题目:单击按钮1时,将其对应的数字字符添加到text1的尾部
3个回答
展开全部
将按钮的commandbutton.Caption 定义为该按钮对应的数字。用按钮 "1" 来举例
sub commandButton1_click()
text1=text1& commandButton1.caption
end sub
'------------------------------------
批量定义按钮的Caption
sub ReDimCaption()
dim n as integer
for n= 1 to n '-----n为按钮数量
userform1.controls.item("CommandButton" & n).caption=n
next x
end sub
sub commandButton1_click()
text1=text1& commandButton1.caption
end sub
'------------------------------------
批量定义按钮的Caption
sub ReDimCaption()
dim n as integer
for n= 1 to n '-----n为按钮数量
userform1.controls.item("CommandButton" & n).caption=n
next x
end sub
展开全部
Private Sub Command1_Click()
n = InputBox("请输入一个数字")
Text1 = Text1 & n
End Sub
n = InputBox("请输入一个数字")
Text1 = Text1 & n
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
text1.text=text1.text & command1.caption
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询