|
-
Nov 2nd, 1999, 01:39 PM
#1
Thread Starter
Registered User
When you load a form with a picture (jpg or bmp) from a DLL and Unload the form, even using frmName=Nothing, the memory that it had used (including the image size) with stay in the memory.
I know this 'cause I' saw with the Norton Information.
I ask you,
how can I unload the form and free this memory?
Thanks is advance.
Jefferson
-
Nov 2nd, 1999, 10:35 PM
#2
Lively Member
erm , imnot sure about this, but could the memory that is still used just be your pc being useful and keeping the prog u just ran in ram, so it will run quicker if u need it again?? Its a possibility, especially with win 98!
------------------
jimmy
ICQ:35813919
mail:[email protected]
-
Nov 2nd, 1999, 11:04 PM
#3
Member
the tips section of this site gives this example, or something close...
Dim frm as Form
For Each frm in Forms
Unload frm
Set frm = Nothing
Next frm
...which should release all memory.
-
Nov 2nd, 1999, 11:16 PM
#4
Hyperactive Member
I remember that I read somewhere that windooz actually does free the memory, but keeps it available to the running application (and shows it as if it in use by that application), but if another application needs the memory, it will get it.
-
Nov 3rd, 1999, 03:36 AM
#5
Thread Starter
Registered User
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|