weightinwildcat
Programmer
I am working on VBA code in Access 2010 to get information from a memo field and post it to a cloud based service. I am able to copy information from the memo field into a String variable. Since I am posting to the cloud I am going through the string one character at a time. If a character is a letter or a number, I concatenate that onto another string variable. If the code is a character like #, % or even a blank space I get a URL code and concatenate THAT onto the end of my second string. (This is to avoid problems that the cloud based service may have in processing such characters.)
The problem is that my second variable seems to get truncated when the number of characters is greater than 255. In theory an Access string variable can hold more than 255 characters, and when I get the length of my first string variable this does show there are over 400 characters. however, when I try to do any further manipulation the text gets truncated.
Any thoughts?
The problem is that my second variable seems to get truncated when the number of characters is greater than 255. In theory an Access string variable can hold more than 255 characters, and when I get the length of my first string variable this does show there are over 400 characters. however, when I try to do any further manipulation the text gets truncated.
Any thoughts?