I want my program to open MY COMPUTER , how do I do that, I tried this:
thanks in advanceCode:x = Shell("My Computer", 0)
Printable View
I want my program to open MY COMPUTER , how do I do that, I tried this:
thanks in advanceCode:x = Shell("My Computer", 0)
Try this:
Code:Shell "C:\windows\explorer.exe", 0
that will open the explorer view of my computer, but I'm reting to imitate the desktop, so I want it to be the same
and I also would like to know how to open:
Ryciciling Bin
Net Work Neighbor Hood
I have a control for all of this and MUCH MUCH more.
Do you want me to send you?
ICQ ME: 61917199
or:
EMAIL ME: [email protected]
thanks for the contorl, but it doesn't have an open MY COMPUTER option, does anyone else have any other ideas?
Private Sub Command1_Click()
Dim x
' Opens MY Computer
x = Shell("c:\windows\control.exe sysdm.cpl")
End Sub
thanks, thats a lot of progress, but that opens the properties window, how do i make it open MY COMPUTER (not the MY COMPUTER properties page)
My fault, I thought you wanted the properties. Here's how to get what you want!! Enjoy.
Private Sub Command1_Click()
Dim x
' Opens MY Computer
x = Shell("c:\windows\explorer.exe /e,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", vbMaximizedFocus)
End Sub
I am still working on the bin and network for you. Maybe tomorrow.
Here's for the Recycle Bin.
Private Sub Command2_Click()
Dim x
' Opens Recycle Bin
x = Shell("c:\windows\explorer.exe /e,::{645FF040-5081-101B-9F08-00AA002F954E}", vbMaximizedFocus)
'
End Sub