• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

quick vb question about collections/classes and memory

TranceNation

Platinum Member

if I have a collection and add stuff to it, then create a new one, does the old collection get freed or does it still exist in memory?

ie, if i do the following:

Dim mylist as collection
set mylist = new collection
mylist.add "test1"
set mylist = new collection
mylist.add "test2"


thanks
 
Back
Top