There are two kinds of strings: variable-length and fixed-length strings.
· A variable-length string can contain up to approximately 2 billion (2^31) characters.
· A fixed-length string can contain 1 to approximately 64K (2^16) characters.
Thank you but it truncates it even before copying it in a field (and that would have been a memo). I just do
Dim test as string
test = "some long string"
and put a break point here and the string is truncated to somewhere around 256 chars ....
Everyone's talking about where you're pasting the string into, but I don't see where you're actually entering the string. If you're entering it into a text field, it'll limit it to 256 characters. If you're actually entering it into a memo field (where it's got to go if you plan on it going into a table) it should allow it.
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.