S
Sharkbyte
I have a string variable that I need to perform a REPLACE on, and then
truncate for a text field. However, when I added the REPLACE line, the
output of the LEFT command becomes 255 characters of text PLUS however many
"-" were added in the REPLACE. Where before it was strictly 255 with the
embedded CRLF. Am I missing something?
gString6 = Replace(gString6, vbCrLf, "-")
gString6 = Left(gString6, 255)
Any help would be appreciated.
truncate for a text field. However, when I added the REPLACE line, the
output of the LEFT command becomes 255 characters of text PLUS however many
"-" were added in the REPLACE. Where before it was strictly 255 with the
embedded CRLF. Am I missing something?
gString6 = Replace(gString6, vbCrLf, "-")
gString6 = Left(gString6, 255)
Any help would be appreciated.