Results 1 to 5 of 5

Thread: [RESOLVED]Shell System Properties

Threaded View

  1. #1

    Thread Starter
    Fanatic Member TokersBall_CDXX's Avatar
    Join Date
    Mar 2003
    Location
    America
    Posts
    571

    [RESOLVED]Shell System Properties

    Currently in the process of creating a shell tool.
    and I'm trying to mimic the right click on 'My Computer'

    I cannot find any reference to shelling 'System Properties'
    any ideas?


    I've been able to manage the first 3 main context's of the menu for those interested in them

    VB Code:
    1. Select Case PopMenu("Explore;Search;Manage;Properties", 0, 0)
    2.         Case 65535:
    3.         Dim sGuid2 As String
    4.             sGuid2 = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
    5.             ShellExecute Me.hwnd, vbNullString, sGuid2, vbNullString, vbNullString, SW_MAX
    6.        
    7.         Case 65534:
    8.         Dim sGuid3 As String
    9.             sGuid3 = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
    10.             ShellExecute Me.hwnd, "find", sGuid3, vbNullString, vbNullString, SW_MAX
    11.         Case 65533:
    12.         Dim sGuid4 As String
    13.         Dim wPath As String, strSave As String
    14.             strSave = String(200, Chr$(0))
    15.             wPath = Left$(strSave, GetWindowsDirectory(strSave, Len(strSave)))
    16.             wPath = wPath & "\system32\compmgmt.msc "
    17.             ShellExecute Me.hwnd, vbNullString, wPath, vbNullString, vbNullString, SW_MAX
    18. End Select
    Last edited by TokersBall_CDXX; Jan 13th, 2005 at 01:16 AM. Reason: Resolved
    Build your own personalized flash based chat room for your webpage for FREE! http://www.4computerheaven.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