在vb中怎样遍历用户控件中的Label控件
在vb中怎样遍历用户控件中的Label控件 --------------------编程问答-------------------- Dim ObjControl As ControlFor Each ObjControl In Controls
If TypeOf ObjControl Is Label Then
ElseIf TypeOf ObjControl Is ComboBox Then
endif
Next
其它的控件就是类似的做法了...... --------------------编程问答-------------------- For Each ObjControl In Me.Controls
补充:VB , 控件