Free up memory that your application uses.Being a professional programmer it is must to free up mem
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
(1(1 Vote))
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
Free up memory that your application uses.Being a professional programmer it is must to free up mem Comments
No comments yet — be the first to post one!
Post a Comment