Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/10/2006, 11:18
Avatar de tazzito
tazzito
 
Fecha de Ingreso: agosto-2006
Mensajes: 381
Antigüedad: 17 años, 9 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