使用Excel VBA,对窗体中的一个文本框控件,如何可以不断滚动两位数字,就像抽签似的?谢谢!
2个回答
展开全部
1.建立文本框控件TextBox1
2.建立两个模块
Sub text_box()
Application.OnTime TimeValue(Now()) + TimeValue("00:00:01"), "text_box1"
End Sub
Sub text_box1()S
heet1.TextBox1.Text = Round(Rnd() * 90 + 10, 0)
text_box
End Sub
3.在Workbook_Open事件中输入
Private Sub Workbook_Open()
text_box
End Sub
2.建立两个模块
Sub text_box()
Application.OnTime TimeValue(Now()) + TimeValue("00:00:01"), "text_box1"
End Sub
Sub text_box1()S
heet1.TextBox1.Text = Round(Rnd() * 90 + 10, 0)
text_box
End Sub
3.在Workbook_Open事件中输入
Private Sub Workbook_Open()
text_box
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询