I understood that a string in VB .Net maximum length was quite large (could be way over 1000 characters) but do not know for sure. I keep having a problem when I concatenate one string to another and the result is the second string.
Example:
Str1 = “this is the first test”
Str1 &= “this is the second test”
Now Str1 = “this is the second test”
The lengths of the strings in the example are not correct (much longer) but are under 1000 characters. Does anyone have a clue?