
28/09/2006, 10:33
|
 | | | Fecha de Ingreso: agosto-2006
Mensajes: 381
Antigüedad: 18 años, 9 meses Puntos: 2 | |
Dim MiObjetoRecorrido As Object
For Each MiObjetoRecorrido In Me
If TypeOf MiObjetoRecorrido Is Label Then 'los tipos son TextBox, CommandButton, Label, etc
MiObjetoRecorrido.Visible = False
End If
Next |