Tema: Vb+access
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/11/2003, 09:25
Teri
 
Fecha de Ingreso: abril-2003
Ubicación: Madrid
Mensajes: 707
Antigüedad: 21 años, 1 mes
Puntos: 0
Pon tu propio gestor de errores
Sub xxxxxx()
on error goto Error_xxxx
.
.
.
.
.
.

Salir_xxxx:
Exit sub

Error_xxxx:
msgbox err.description, vbexclamation
resume Salir_xxxx
End Sub