|
-
Nov 25th, 1999, 03:00 AM
#1
Thread Starter
_______
What's the shell for "My Computer"
-
Nov 19th, 2002, 02:39 PM
#2
Junior Member
My Computer is just an IE/Windows Explorer page and does not actually exist so you cannot just launch it. However, you could in theory shell internet explorer and "ask" it for my computer.
-
Nov 19th, 2002, 02:42 PM
#3
You can, programmatically, open My Computer, from VB, using the Common Dialog control.
VB Code:
Private Sub Command1_Click()
With CommonDialog1
.CancelError = True
.InitDir = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
.DialogTitle = "My Computer"
.ShowOpen
End With
End Sub
-
Nov 19th, 2002, 04:38 PM
#4
Fanatic Member
Right...
Well, its not exacly the "My Computer"...
I did something ressembling to the My computer:
WebBrowser in microsoft internet controls,
VB Code:
WebBrowser.navigate "c:\"
Originally posted by Hack
You can, programmatically, open My Computer, from VB, using the Common Dialog control.
VB Code:
Private Sub Command1_Click()
With CommonDialog1
.CancelError = True
.InitDir = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
.DialogTitle = "My Computer"
.ShowOpen
End With
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|