Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
IE Object
Message
From
09/02/2000 08:37:17
 
 
To
09/02/2000 06:20:28
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Miscellaneous
Thread ID:
00329319
Message ID:
00329352
Views:
19
Hi
I don’t know if IE has a favorite object, I know it has a history object.

Usually the favorite sites are held in a folder in your system folder.

I used the FileSystemobject object to retrieve the favorite site info


Public oFileObject,oFile,lcFile
oFileObject=createobject("scripting.filesystemobject")
oFile=oFileObject.getfolder("c:\windows\favorites")
For each lcFile in oFile.files
If UPPER(ALLTRIM(justext(lcFile.name)))="URL"
This.additem(lcFile.name)
Endif
Endfor

Hope this helps
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform