【VB开源代码栏目提醒】:网学会员为广大网友收集整理了,3.2.2.frm,希望对大家有所帮助!
VERSION 5.00
Begin VB.Form Form3
Caption = "Form3"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form3"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form3"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
a& = 1
'隐式说明变量a为长整型
b$ = "China"
'隐式说明变量b为字符串型
Print a, b
End Sub
Private Sub Form_Load()
End Sub