If there's some code in your app that
uses DosAlloc to alloc memory (sometime
it is required, ), then that part will be restricted
withing 640K DOS System VM.
foolishwolf:
我以前用Delphi1时也出现过内存不够的现象,原因是全局变量定义太多,
var A : array[1..500] of string和另外的一些全局变量.后来改用:
var A : array[1..500] of string[2]便解决了,您可以定义成Tpoint
相信没有问题.
good luck!