Private Sub Update_Click()
On Error GoTo Update_Click_Err
Me!URL.Enabled = True
If Me!URL <> "" Then
Me!URL = Null
End If
Me!URL.SetFocus
RunCommand acCmdEditHyperlink
Me!Update.SetFocus
Me!URL.Enabled = False
Exit Sub
Update_Click_Err:
If Err.Number = 432 Then
MsgBox "Unable to locate file: Use the find file button to locate the file and refresh the link", vbOKOnly, "File Find Error!"
End If
End Sub