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_Open(Cancel As Integer)
CurrentDb.Properties("AppTitle").Value = Nz(DLookup("HName", "Company"), "")
Me.Company.Caption = Nz(DLookup("HName", "Company"), "")
GetActv
Application.RefreshTitleBar 'Update On Screen!
End Sub
Public Function GetActv()
Select Case Application.CurrentObjectType
Case acForm
CommandBars("Base").Controls("Print").Visible = False
Case acReport
CommandBars("Base").Controls("Print").Visible = True
End Select
End Function