【VB开源代码栏目提醒】:网学会员为广大网友收集整理了,3.4.3.frm,希望对大家有所帮助!
VERSION 5.00
Begin VB.Form Form8
Caption = "Form8"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form8"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form8"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim a As String
Dim b As String
a = "中国"
b = "北京"
Print a + b
Print
'换行
Print a & b
End Sub