The box is your text editor's interpretation of the vbBack character.. the vbBack's Ascii equivalent. What are you trying to accomplish with the vbBack character?
In had trouble with the Operator pressing enter in the Notes Section of a program and was able to take out the New line feed with chr$(13) with the following procedure. The Notes were in a Memo field with various character length. I have changed this to the vbback code which is Chr$(8)This might work for you. (I hope)
'consolidate the notes into one string
'
Dim sInput As String
Dim nFindPos
sInput = Trim(.Notes) 'notes had using the With ???
'
'Replace vbback with space
'
nFindPos = 0
Do
nFindPos = InStr(sInput, Chr$(8)) 'chr$ 8 is vbback
if finddPos > 0 Then Mid(sInput, nFindPos) = " "
Loop Until nFindPos = 0
sInput should then contain the file without the vbback.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.