Private Sub txtViewAuditDoc_Click()
On Error GoTo Proc_Err
If Me.txtViewAuditDoc & "" = "" Then
MsgBox "There is no document link. Please add one on the Audit Parms form.", vbOKOnly + vbInformation
Else
Application.FollowHyperlink Me.txtViewAuditDoc, , True
End If
Proc_Exit:
Exit Sub
Proc_Err:
Select Case Err.Number
Case 7971
Resume Proc_Exit
Case Else
MsgBox Err.Number & "--" & Err.Description, vbCritical
Resume Proc_Exit
End Select
End Sub