【VB开源代码栏目提醒】:网学会员,鉴于大家对VB开源代码十分关注,论文会员在此为大家搜集整理了“2.4.4.frm”一文,供大家参考学习!
VERSION 5.00
Begin VB.Form vb04
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
Height = 615
Left = 1080
TabIndex = 0
Text = "Text1"
Top = 480
Width = 1935
End
End
Attribute
VB_Name = "vb04"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
End Sub
Private Sub Text1_LostFocus()
If IsNumeric(Text1.Text) = True Then
MsgBox "输入的不是数字"
End If
End Sub