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.
Public Function getCrLF(memFld) As Integer
Dim pos As Integer
pos = 1
Do
If Nz(InStr(pos, memFld, vbCrLf)) = 0 Then
Exit Function
End If
pos = InStr(pos, memFld, vbCrLf) + 1
getCrLF = getCrLF + 1
Loop
End Function