20-09-2008, 01:04 PM
You have a memory leak somewhere. Memory leaks can be caused by loads of things, so you might want to check your source for any obvious ones. One possible memory leak which I just found out the other day is exiting a sub/function while you are still in a with statement, for example :
Another tip would be to download a code profiler (such as this one : http://www.aivosto.com/project/project.html). However, many of these are expensive, so good luck finding a free one. I don't remember if CodeSMART finds memory leaks, if it does, you can use that
Code:
With Map
x=.x
y=.y
exit sub
end with
Another tip would be to download a code profiler (such as this one : http://www.aivosto.com/project/project.html). However, many of these are expensive, so good luck finding a free one. I don't remember if CodeSMART finds memory leaks, if it does, you can use that
