I have very little knowledge of Visual Basic 2008 express (not the current standard of Visual Basic.NET I believe) (I normally code in C/C++) but my boss gave me a program to debug, where the error of the program is simply put that the (string) input caps out at 1,000,000 characters, and they need it to go beyond that.
How would I go about doing this? At first I thought it was as simple as declaring the variable to be a larger variable type (i.e. changing int to long), but I'm not sure if that would fix this issue as it is a string a not a decimal variable type.
So if 1,000,000 characters happens to be the practical limit (not theoretical) of input into a string variable in Visual Basic, is there any clever way to circumvent this?