CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    List the methods exposed by a comclass

    HI
    I am trying to list the methods exposed by a comclass.I know I can get the progid and the file location of the comdll from the regestry.But how will I get the methods exposed by the comdll?



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

    Re: List the methods exposed by a comclass

    several solutions:
    - add the com dll to your vb project and inspect the methods via F2 - object browser
    - use OLE2View-Tool from VS 6 Tools to inspect the COM DLL
    - if you want to do it from a VB program use the TLBINf32.DLL. it's a COM dll that offers an object model for inspecting COM components.


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