N nico78 Active Member Licensed User Longtime User Sep 26, 2011 #1 When I make image=loadbitmap (...) How free the image if we have not need of it.
M magarcan Active Member Licensed User Longtime User Sep 26, 2011 #2 nico78 said: When I make image=loadbitmap (...) How free the image if we have not need of it. Click to expand... Doing this is needed?? Upvote 0
nico78 said: When I make image=loadbitmap (...) How free the image if we have not need of it. Click to expand... Doing this is needed??
thedesolatesoul Expert Licensed User Longtime User Sep 26, 2011 #3 Just do Image = Null i think. When there are no more references to an object it is cleared from memory. So make sure no other variables are referencing to that bitmap. Upvote 0
Just do Image = Null i think. When there are no more references to an object it is cleared from memory. So make sure no other variables are referencing to that bitmap.