Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Windows explorer
Message
 
 
To
22/03/2007 17:34:15
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01207378
Message ID:
01207392
Views:
17
>I want to open a windows explorer in it's own window and navigate to a given directory.
>
>If this were internet explorer I would
>
>oIE = CREATEOBJECT("InternetExplorer.Application")
>
>oIE.Navigate("http://some web site/")
>oIE.Visible = .t.
>
>
>I want to do the same thing with internet explorer but can't find the class name to even experiment.
>
>TIA

In additon to Naomi's suggestion, just give IE a filesystem URL:

loIE = CreateObject("internetexplorer.application")
loIE.Navigate("file://c:\program files")
loIE.Visible=.t.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform