VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Free up memory that your application uses.Being a professional programmer it is must to free up mem

by Sahel Khatri (1 Submission)
Category: Custom Controls/Forms/Menus
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 28th February 2002
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Free up memory that your application uses.Being a professional programmer it is must to free up memory after your application.Specially when

Rate Free up memory that your application uses.Being a professional programmer it is must to free up mem




Dim intCount As Integer
While Forms.Count > 1
'// Find first form besides "me" to unload
intCount = 0

While Forms(intCount).Caption = Me.Caption
intCount = intCount + 1
Wend

Unload Forms(intCount)
Wend

'// Last thing to be done...
Unload Me
End


Download this snippet    Add to My Saved Code

Free up memory that your application uses.Being a professional programmer it is must to free up mem Comments

No comments have been posted about Free up memory that your application uses.Being a professional programmer it is must to free up mem. Why not be the first to post a comment about Free up memory that your application uses.Being a professional programmer it is must to free up mem.

Post your comment

Subject:
Message:
0/1000 characters