Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

"Web Folders" default?

0 views
Skip to first unread message

BillyJoe

unread,
Feb 9, 2003, 5:14:57 PM2/9/03
to
Is there a way to get IE to open a target in "Web Folders" mode
automatically?
It would be very nice to be able to have an icon on the user's desktop, or
a clickable HREF link to bring these up instead of forcing the user through
the manual process of opening IE then using the Open... function, entering
the URL, and clicking the checkbox. This is a huge inconvenience that seems
to override the purpose of allowing IE to access these in the first place.

Any way around this?

Regards,
Bill

news2

unread,
Mar 8, 2003, 11:06:38 AM3/8/03
to
Hello,

I'm trying to monitor Internet Explorer events yet haven't been able to get
it working, can anyone show me how to do this, thank you!

Set ie = WScript.CreateObject("InternetExplorer.Application", "ie_")

ie.Navigate "http://www.google.com"
ie.Visible = 1
ie.Left = 0
ie.Top = 0
ie.Height = 600
ie.Width = 800
ie.ToolBar = 1
ie.StatusBar = 1
ie.Resizable = 1
ie.StatusBar = 1

Private Sub ie_DocumentComplete(ByVal pDisp As Object, URL As Variant)
If (pDisp Is ie.Object) Then
MsgBox "your document is ready"
End If
End Sub

Private Sub ie_Stop()
MsgBox "IE has stopped"
End Sub

Private Sub ie_Quit()
MsgBox "User has quit"
End Sub

Private Sub ie_Refresh()
MsgBox "Your document has refreshed"
End Sub
-------------------

Also tried adding

WScript.ConnectObject ie,"ie_"

yet that gives an error.

Regards,

Greg Woolley

0 new messages