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)
On Error Resume Next
Dim sngScale As Single
Dim ctl As Control
sngScale = 0.5
For Each ctl In Me.Controls
ctl.Top = ctl.Top * sngScale
ctl.Left = ctl.Left * sngScale
ctl.FontSize = ctl.FontSize * sngScale
ctl.Height = ctl.Height * sngScale
ctl.Width = ctl.Width * sngScale
Next
Me.CurrentX = 2000
Me.CurrentY = 5000
Me.FontSize = 24
Me.ForeColor = vbRed
Me.Print "Tek-Tips Forums RULE!"
End Sub