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.
but is it possible to limit the amount of characters from 64,000
Private Sub blah_Change()
Me.txtCharCount = Nz(Len(Me.blah.Text))
End Sub
Private Sub Form_Current()
Me.blah.SetFocus 'Set focus to memo field
Me.txtCharCount = Nz(Len(Me.blah.Text))
End Sub