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.
Dim Occ As Integer
Public Function ScanLine(s)
Dim LengthofLine
Dim checking
Dim theLine
Dim Tmp
Occ = 1
Tmp = 0
theLine = s
LengthofLine = Len(theLine)
For x = 1 To LengthofLine
checking = Mid(theLine, x, 1)
If Tmp >
Then
Occ = Occ + 1
Tmp = 0
End If
If checking = Chr$(13) Then
Occ = Occ + 1
Tmp = 0
Else
Tmp = Tmp + 1
End If
Next x
End Function