
24/10/2006, 11:18
|
 | | | Fecha de Ingreso: agosto-2006
Mensajes: 381
Antigüedad: 18 años, 8 meses Puntos: 2 | |
acabo de hacer la prueba con este codigo y no tuve problema
Function limpiaframe(miFrame As Frame)
miFrame.Caption = ""
For Each c In miFrame.Container
If TypeOf c Is TextBox Then
c.Text = ""
End If
Next
End Function
Private Sub Command1_Click()
Call limpiaframe(Me.Frame1)
End Sub |