VB编程:将文本控件添加到集合Collection中-19
原创
©著作权归作者所有:来自51CTO博客作者彭世瑜的原创作品,请联系作者获取转载授权,否则将追究法律责任
运行效果
程序代码
Dim aaa As Collection
Private Sub Command1_Click()
Dim item As Control
For Each item In aaa
item.Text = "microsoft" '对集合中所有TextBox的Text属性赋值
Next item
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Set aaa = New Collection
Dim tex As Control
For Each tex In Me.Controls
If TypeName(tex) = "TextBox" Then '判断是否为TextBox
aaa.Add tex, tex.Name '添加到集合
End If
Next tex
End Sub
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章