【VB开源代码栏目提醒】:网学会员为广大网友收集整理了,4.3.3.frm,希望对大家有所帮助!
VERSION 5.00
Begin VB.Form Form19
Caption = "Form19"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form19"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Form19"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim sum As Integer
Dim a As Integer
sum = 0
While a <= 100
sum = sum + a
a = a + 1
Wend
MsgBox "其和为" & sum
End Sub