
Virtual memory doesn't reclaim memory from VB program
Hello Programmers,
I have here an imaging program that does all sorts of
image processing. The prog is an MDI form with many child
forms containing images (bmp/jpeg/gif).
Even though I clear away all of the images after working
with them (unloading the child forms), the program still
runs very slowly because it does disk accesses everytime
I do something. The only way to speed up the program again
is to quit and rerun.
Is there a win32 API func that will allow me to "flush"
the virtual memory cache?
Thanks for any help.
Hung