Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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
Private Sub Open_Click()
On Error GoTo Open_Click_Err
Me!URL.Hyperlink.Follow
Exit Sub
Open_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!"
Else
MsgBox "Error No: " & Err.Number & "; " & Err.Description
End If
End Sub