Hey...

When I saw the help for the String Data Type, I saw it can contain up to approximately 2 billion characters.
In fact, it should contain up to 2^31 characters, and this is exactly 2,147,483,648
But when I try to put in the string only 2 million characters, I get an error: "Out Of String Space"
Why?!
I use this simple code:
Code:
Dim X,A as String
A=Space(10000000)
X=A+A
In the 3rd line I get the Error.
Why?!
Any Ideas?