刚学vb 在文本框中输入一个字符,判断是字母还是数字字符 或者其他字符 我写的有问题 应该怎么改
2个回答
展开全部
s是变量,不该打引号。
下面是用选择语句来处理,可能比较清晰点。
Private Sub Command1_Click()
Dim s As String
s = Text1
If Len(s) = 1 Then
Select Case s
Case "a" To "z", "A" To "Z"
MsgBox "字母"
Case "0" To "9"
MsgBox "数字"
Case Else
MsgBox "其它"
End Select
Else
MsgBox "请只输入一个字"
End If
End Sub
展开全部
Private Sub Command1_Click()
Dim s As String
s = Text1.Text
If Len(s) = 1 Then
If Text1.Text Like "[A-Z]" Or Text1.Text Like "[a-z]" Then
Text2.Text = "字母"
ElseIf IsNumeric(Text1.Text) Then Text2.Text = "数字"
Else
Text2.Text = "其它"
End If
Else
MsgBox "请只输入一个字符"
End If
End Sub
Dim s As String
s = Text1.Text
If Len(s) = 1 Then
If Text1.Text Like "[A-Z]" Or Text1.Text Like "[a-z]" Then
Text2.Text = "字母"
ElseIf IsNumeric(Text1.Text) Then Text2.Text = "数字"
Else
Text2.Text = "其它"
End If
Else
MsgBox "请只输入一个字符"
End If
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询