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 PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
Cancel = Page > 1
End Sub
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
Select Case Page
Case 1
Cancel = True
Case 3
Cancel = True
End Select
End Sub