【VB开源代码栏目提醒】:网学会员为需要VB开源代码的朋友们搜集整理了4.1.1A.frm相关资料,希望对各位网友有所帮助!
VERSION 5.00
Begin VB.Form Form2
Caption = "Form2"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form2"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
a = 10
b = 20
Print "交换前: "; a, b
temp = a
a = b
b = temp
Print "交换后: "; a, b
End Sub