Article ID: 138535
Article Last Modified on 1/8/2003
Sub test(x As Control)
x.Text = "hello"
End Sub
Private Sub Form_Click()
For Each object In Controls
test object
Next
End Sub
Sub test(ByVal x As Control)
x.Text = "hello"
End Sub
-or-
Private Sub Form_Click()
Dim object As Control
For Each object In Controls
test object
Next
End Sub
Additional query words: 3.00 4.00 vb4win vb4all
Keywords: KB138535