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.
'This is the top of the report module.
Option Compare Database
Dim blnPrint
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
'This turns the textbox on.
blnPrint = True
End Sub
Private Sub GroupFooter1_Format(Cancel As Integer, FormatCount As Integer)
'This is the footer that you want to turn the textbox off.
blnPrint = False
End Sub
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
Me.txtText.Visible = Page < Pages And blnPrint
End Sub