PDA

Click to See Complete Forum and Search --> : shell


HeSaidJoe
Nov 25th, 1999, 02:00 AM
What's the shell for "My Computer"

P9846
Nov 19th, 2002, 01:39 PM
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.

Hack
Nov 19th, 2002, 01:42 PM
You can, programmatically, open My Computer, from VB, using the Common Dialog control.Private Sub Command1_Click()
With CommonDialog1
.CancelError = True
.InitDir = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
.DialogTitle = "My Computer"
.ShowOpen
End With
End Sub

Ruku
Nov 19th, 2002, 03:38 PM
Well, its not exacly the "My Computer"...

I did something ressembling to the My computer:

WebBrowser in microsoft internet controls,


WebBrowser.navigate "c:\"

Originally posted by Hack
You can, programmatically, open My Computer, from VB, using the Common Dialog control.Private Sub Command1_Click()
With CommonDialog1
.CancelError = True
.InitDir = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
.DialogTitle = "My Computer"
.ShowOpen
End With
End Sub