CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    13

    Retrieve ClassID of Installed ActiveX

    Hi!

    I was wondering if any of you knew how to retrieve a list of installed ActiveX controls, and add them to a listview with their classID

    Any help would be appreciate

    Thankyou
    Sang


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Retrieve ClassID of Installed ActiveX

    I'd iterate over all registry entries under HKEY_CLASSES_ROOT and check the CLSID subkey.
    Then, with the CLSID found, read HKEY_CLASSES_ROOT\CLSID\foundGUID Key=InprocServer32 to find the path to the OCX.


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

Featured