Error al querer abrir un PDF
En el formulario tengo un botón con esta instrucción
Private Sub Comando57_Click()
On Error GoTo sol_err
If IsNull(Me.Archivo1) Then
MsgBox " El registro solicitado" & vbCrLf & vbCrLf & " Ref. Nº " & IdDocumento & vbCrLf & vbCrLf & " No tiene documento para mostrar." & vbCrLf & " ", vbInformation, "No lo ves"
Else
If Nz(Me.Ruta, "") = "" Then
Exit Sub
ElseIf Right(Me.Ruta, 3) = "pdf" Then
Application.FollowHyperlink Me.Ruta
Else
MsgBox "La ruta documento está incompleta o mal Informada", vbCritical, "RUTA INADECUADA"
End If
Salida:
Exit Sub
sol_err:
If Err.Number = 16388 Then
Resume Salida
Else
MsgBox "Se ha producido el error " & Err.Number & ": " & Err.Description
End If
End If
End Sub
El cual abre un pdf si la ruta es correcta, si no fuese así debería abrir el MsgBox "La ruta documento está incompleta o mal Informada", vbCritical, "RUTA INADECUADA"
pero no se el porque aparece este error
una ayuda.
Gracias.
End If
End If