【VB开源代码栏目提醒】:网学会员鉴于大家对VB开源代码十分关注,论文会员在此为大家搜集整理了“Ex6_10.frm”一文,供大家参考学习
VERSION 5.00
Begin VB.Form Ex6_10
Caption = "Form1"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Ex6_10"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim mycls As New ProLet
Private Sub Form_Click()
mycls.Prostr = InputBox("请输入一些字符")
Print "您输入的字符串为:"; mycls.Prostr
Print
End Sub