Results 1 to 4 of 4

Thread: shell

  1. #1

    Thread Starter
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    Post

    What's the shell for "My Computer"

  2. #2
    Junior Member
    Join Date
    Nov 2002
    Location
    @ my PC
    Posts
    27
    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.

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333
    You can, programmatically, open My Computer, from VB, using the Common Dialog control.
    VB Code:
    1. Private Sub Command1_Click()
    2. With CommonDialog1
    3.    .CancelError = True
    4.    .InitDir = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
    5.    .DialogTitle = "My Computer"
    6.    .ShowOpen
    7. End With
    8. End Sub

  4. #4
    Fanatic Member Ruku's Avatar
    Join Date
    Jul 2002
    Location
    Canada
    Posts
    655

    Right...

    Well, its not exacly the "My Computer"...

    I did something ressembling to the My computer:

    WebBrowser in microsoft internet controls,

    VB Code:
    1. WebBrowser.navigate "c:\"
    Originally posted by Hack
    You can, programmatically, open My Computer, from VB, using the Common Dialog control.
    VB Code:
    1. Private Sub Command1_Click()
    2. With CommonDialog1
    3.    .CancelError = True
    4.    .InitDir = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
    5.    .DialogTitle = "My Computer"
    6.    .ShowOpen
    7. End With
    8. End Sub

    Using VB.NET 2005/.NET 2.0, NetBeans IDE 5, Fujitsu Cobol85,
    Website: http://DreamForgery.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width