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.
[blue] Dim ctl As Control
On Error Resume Next
For Each ctl In Me.Controls
If ctl.Tag = "?" Then
ctl.ControlTipText = CurrentDb.TableDefs("TableName").Fields(ctl.Name).Properties("Description")
End If
Next
On Error GoTo 0[/blue]