Dim temp As Integer
Private Sub 开始_Click()
If 开始.Caption = "开始" Then
开始.Caption = "猜一猜"
数字.Text = ""
大小.Caption = ""
Randomize
temp = Int(Rnd * 100)
Else
If 数字.Text = "" Then MsgBox "您没有输入内容!": Exit Sub
If temp > Val(数字.Text) Then
大小.Caption = "小了!"
ElseIf temp < Val(数字.Text) Then
大小.Caption = "大了!"
Else
大小.Caption = "正确!"
开始.Caption = "开始"
End If
End If
End Sub
11.6 猜数字VBA代码
笨巧果 发表于: 2010-11-06 21:58 来源: 扑奔PPT网
大家对 11.6 猜数字VBA代码 的评论
最新PPT模板
最新贴子
PPT热贴
Private Sub 开始_Click()
If 开始.Caption = "开始" Then
开始.Caption = "猜一猜"
数字.Text = ""
大小.Caption = ""
Randomize
temp = Int(Rnd * 100)
Else
If 数字.Text = "" Then MsgBox "您没有输入内容!": Exit Sub
If temp > Val(数字.Text) Then
大小.Caption = "小了!"
ElseIf temp < Val(数字.Text) Then
大小.Caption = "大了!"
Else
大小.Caption = "正确!"
开始.Caption = "开始"
End If
End If
End Sub