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 Form_Current()
If Not IsNull(Me.FileFullPath) Then
Me.OLEUnboundName.Visible = True
Me.OLEUnboundName.SourceDoc = Me.FileFullPath
Me.OLEUnboundName.OLETypeAllowed = acOLELinked
Me.OLEUnboundName.Action = acOLECreateLink
Else
Me.OLEUnboundName.Visible = False
End If
End Sub