PDA

Click to See Complete Forum and Search --> : application variable and For Each


dcarlson
May 7th, 2001, 09:52 AM
Is it possible to clear the contents of all application level variables using a For Each syntax. Such as:

For Each applicationvariable IN application
applicationvariable = ""
next


Thanks in advance.

dcarlson
May 7th, 2001, 11:23 AM
I got it.

For each Key in Application.Contents
Application.Contents (key) = ""
next