【VB开源代码栏目提醒】:网学会员--在 VB开源代码编辑为广大网友搜集整理了:Ex6_1.frm绩等信息,祝愿广大网友取得需要的信息,参考学习。
VERSION 5.00
Begin VB.Form Ex6_1
Caption = "Form1"
ClientHeight = 2325
ClientLeft = 60
ClientTop = 450
ClientWidth = 3525
LinkTopic = "Form1"
ScaleHeight = 2325
ScaleWidth = 3525
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 2280
TabIndex = 3
Top = 840
Width = 855
End
Begin VB.TextBox Text1
Height = 375
Index = 2
Left = 600
TabIndex = 2
Top = 1560
Width = 1455
End
Begin VB.TextBox Text1
Height = 375
Index = 1
Left = 600
TabIndex = 1
Top = 960
Width = 1455
End
Begin
VB.TextBox Text1
Height = 375
Index = 0
Left = 600
TabIndex = 0
Top = 360
Width = 1455
End
End
Attribute VB_Name = "Ex6_1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim txt As TextBox '声明对象变量
Dim i As Integer
For i = 0 To 2
Set txt = Text1(i) '为对象变量赋值
txt.Text = "第" & i & "个文本框"
Next i
End Sub
Private Sub Text3_Change()
End Sub