Out of String Space in Visual Basic 6

后端 未结 6 1530
误落风尘
误落风尘 2020-12-16 18:03

We are getting an error in a VB6 application that sends data back and forth over TCP sockets. We get a runtime error \"out of string space\". Has anyone seen this or have

6条回答
  •  眼角桃花
    2020-12-16 18:22

    Assuming that you are appending data in a loop, ensure that it's not being appended to itself, which will eat memory extremely quickly.

    Example and description of error meaning: http://msdn.microsoft.com/en-us/library/aa264524.aspx

提交回复
热议问题