
26/11/2004, 12:23
|
 | Moderador | | Fecha de Ingreso: febrero-2002 Ubicación: México D.F
Mensajes: 8.004
Antigüedad: 23 años, 2 meses Puntos: 50 | |
Esto te servirá: Cita: For Each c As Control In Panel1.Controls
If c.GetType.Name.ToLower = "textbox" Then
CType(c, TextBox).Enabled = false
CType(c, TextBox).Text = ""
End If
Next Salu2 |