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 Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.[tile] = True Then [tile].Visible = True Else [tile].Visible = False
If Me.[tile2] = True Then [tile2].Visible = True Else [tile2].Visible = False
If Me.[tile3] = True Then [tile3].Visible = True Else [tile3].Visible = False
Text4 = "as"
End Sub
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim vtop
Dim vspacer
Dim vinitialtop
vtop = 800
vspacer = 375
vinitialtop = 800
If Me.[tile] = True Then
[tile].Visible = True
[Label1].Top = vtop
[tile].Top = vtop
vtop = vtop + vspacer
Else
[tile].Visible = False
[Label1].Top = vinitialtop
[tile].Top = vinitialtop
End If
If Me.[tile2] = True Then
[tile2].Visible = True
[Label2].Top = vtop
[tile2].Top = vtop
vtop = vtop + vspacer
Else
[tile2].Visible = False
[Label2].Top = vinitialtop
[tile2].Top = vinitialtop
End If
If Me.[tile3] = True Then
[tile3].Visible = True
[Label3].Top = vtop
[tile3].Top = vtop
vtop = vtop + vspacer
Else
[tile3].Visible = False
[Label3].Top = vinitialtop
[tile3].Top = vinitialtop
End If
End Sub