Results 1 to 2 of 2

Thread: Easy As...

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Boulder, Colorado, USA
    Posts
    325

    Angry

    How do I get a list of IE cookies on my machine.
    -Shickadance

  2. #2
    Guest
    Code:
    dim MyFSO as new FileSystemObject
    dim MyFolder as folder
    dim MyFile as file
    
    set myfolder = MyFSO.GetFolder("C:\Windows\Cookies")
    for each myfile in myfolder
       list1.additem myfile.filename
    next myfile
    Does this work? (you will need to add a reference to the Microsoft Scripting Runtime DLL to your project, SCRRUN.DLL)

    Let me know if this is OK


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