我需要保存a lot
字符,然后,在保存所有信息后,我将使用Print
我尝试使用一个类,csStringBuilder
但错误仍然发生。这就是我试图做的:
Obs:我知道它离一个好的编程还很远,但我试过......
Select Case iFlag
Case 0, 1
Length= Len(strCurrentlyData)
If (Len(strCurrentlyData) + Len(strNewData) < (57000000 - Length)) Then
iFlag = 1
strCurrentlyData= strCurrentlyData & strNewData
Else
iFlag = 2
strCurrentlyData2= strCurrentlyData2 & strNewData
End If
Case 2
Length = Len(strCurrentlyData2)
If (Len(strCurrentlyData2) + Len(strNewData)) < (57000000 - Length) Then
strCurrentlyData2= strCartasDeCobranca2 & strNewData
Else
iFlag = 3
strCurrentlyData3 = strCurrentlyData3 & strNewData
End If
我一直在做这个strCurrentlyData10
,但是
尽管我这样做,它会消耗更多memory
......所以,MaxLength
永远不会一样,这就是我得到这个错误的原因:
Out Of String Space
解决此问题的最佳方法是什么?