Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/11/2008, 15:16
jaimejchs
 
Fecha de Ingreso: noviembre-2008
Mensajes: 5
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Errores en Vb6

Prueba con esto a ver si te funciona

On Error GoTo errhandler
Picture1(h).Picture = LoadPicture(FrmPrincipal.Archivo)
errhandler:
Call MsgBox("Error al ejecutar", vbOKOnly, "Error")
MsgBox "Error", vbCritical
Exit Sub