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 cmdShrink_Click()
For Each ctl In Me.Controls
ctl.Left = ctl.Left * 0.75
ctl.Height = ctl.Height * 0.75
ctl.Width = ctl.Width * 0.75
ctl.Top = ctl.Top * 0.75
If ctl.ControlType = acTextBox Or ctl.ControlType = acLabel Then
ctl.FontSize = ctl.FontSize * 0.75
End If
Next ctl
Me.Width = Me.WindowWidth * 0.75
Me.Detail.Height = Me.Detail.Height * 0.75
Me.Repaint
DoCmd.PrintOut acSelection
Me.Width = Me.WindowWidth * 1.25
Me.Detail.Height = Me.Detail.Height * 1.25
For Each ctl In Me.Controls
ctl.Left = ctl.Left * 1.25
ctl.Height = ctl.Height * 1.25
ctl.Width = ctl.Width * 1.25
ctl.Top = ctl.Top * 1.25
If ctl.ControlType = acTextBox Or ctl.ControlType = acLabel Then
ctl.FontSize = ctl.FontSize * 1.25
End If
Next ctl
Me.Repaint
End Sub