I’m using a long, concatenated String variable and doing a process on that variable. I need to know when the size in memory can become too large, so I need to find the size in memory of that string. Is there a way, and if so how so?
Dim str As String = someLargeAmountOfText
process(str)
You can use the LenB function to find out how many bytes the string takes up. More information at http://docs.realsoftware.com/index.php/LenB