Results 1 to 2 of 2

Thread: application variable and For Each

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 2000
    Location
    Sudbury, Ontario, Canada
    Posts
    274

    application variable and For Each

    Is it possible to clear the contents of all application level variables using a For Each syntax. Such as:
    Code:
    For Each applicationvariable IN application
      applicationvariable = ""
    next
    Thanks in advance.

  2. #2

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 2000
    Location
    Sudbury, Ontario, Canada
    Posts
    274
    I got it.
    Code:
    For each Key in Application.Contents
    	Application.Contents (key) = ""
    next

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width