how to find available functions/properties of a dll
I want to use functions/properties from 2-3 dlls. I could not find relevant details on t开发者_StackOverflow社区he software because of which they get installed.
Could you please let me know how can i find these details? I am using Excel VBA to use these dlls.
If you're adding a reference to a DLL into your VBA project, you can use 'Object Browser' (F2), select the DLL you added and the methods / classes / properties will be shown. With luck, your DLLs will be well documented - and easy to use.
Rgds
I assume those are COM DLLs. In that case what you need is OLE-COM Object Viewer, available as part of whatever is the latest Windows SDK.
精彩评论