CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jun 2001
    Location
    China
    Posts
    28

    How can I know which functions are in a DLL file

    Hello ,
    Sometimes we can call functions in a DLL file. How can I check which functions are included in a DLL file?
    Thanks,

    Sam

  2. #2

    Re: How can I know which functions are in a DLL file

    by code U must use "typelib information" library.
    find it in project->references

    by vb tools U must reference DLL and type "F2".

    hi,brt

    <center>
    <HR width=80%>
    <img src='http://web.tiscali.it/bertaplanet/im...ertaplanet.gif'>
    </center>

  3. #3
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    Re: How can I know which functions are in a DLL file

    If you're speaking of Com Dll (those you can call by adding a reference to project), you can use object browser (pressing F2 in Vb ide) or reference the dll in your projetc an then type the variable instancing the dll and a point.
    (ie: dim xxx as mydll
    xxx.)
    you will receive an aid from intellisense.
    If you are speaking about non Com Dll (such as when you use an Api function), you may find some information using "dependecy walker" called "depends" from visual studio tools. But it may not help a lot. You should look in the net for some tool like Api-guide or similar (maybe C+ Gurus can help you more in this)


    Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, TCartwright, Bruno Paris, Dr_Micahel
    and all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

    The Rater
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

  4. #4
    Join Date
    Mar 2000
    Posts
    95

    Re: How can I know which functions are in a DLL file

    For a standard DLL, in WinNT, right click
    on the DLL file in Explorer and select the
    'Quick View' function
    It will display the Import/Export tables etc.
    I don't think this works for Win9X

    Curt



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