Is it possible to clear the contents of all application level variables using a For Each syntax. Such as:
Thanks in advance.Code:For Each applicationvariable IN application
applicationvariable = ""
next
Printable View
Is it possible to clear the contents of all application level variables using a For Each syntax. Such as:
Thanks in advance.Code:For Each applicationvariable IN application
applicationvariable = ""
next
I got it.
Code:For each Key in Application.Contents
Application.Contents (key) = ""
next