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)
Dim strLastName As String
Dim intTop As Integer
Dim intSpacing As Integer
Dim intCharacter As Integer
Dim intLeftMost As Integer
intSpacing = 1440 / 4 '1/4 inch
strLastName = Me.LastName
Me.FontSize = 16
intLeftMost = Me.LastName.Left
intTop = Me.LastName.Top
For intCharacter = 1 To Len(strLastName)
Me.CurrentX = intLeftMost + (intCharacter - 1) * intSpacing
Me.CurrentY = intTop
Me.Print Mid(strLastName, intCharacter, 1)
Next
End Sub