【VB开源代码栏目提醒】:网学会员在VB开源代码频道为大家收集整理了7.4.1.frm提供大家参考,希望对大家有所帮助!
VERSION 5.00
Begin VB.Form Form5
Caption = "Form5"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form5"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim a
a = InputBox("请输入数据")
If (IsNumeric(a) = True) Then
MsgBox "该数据为数值型"
Else
MsgBox "该数据不是数值型"
End If
End Sub