|
-
Dec 13th, 1999, 02:27 PM
#1
I've been wondering for quite some time, is there a "DLL Browser"?
By DLL Browser, I mean some program which will reports back all functions, classes, and other objects defined in a specified DLL.
And possibly even what kind of arguments they expect.
If this exists, where is it?
If this doesn't exist, why not??
It seems like this should be a computable problem...
--
[email protected]
-
Dec 13th, 1999, 07:00 PM
#2
If you're thinking about creating your own Web Browser, then if you have Internet Explorer 4.0 or higher installed, you already have a WebBowser control availble. Press CTRL+T and select Mincrosoft Internet Controls from the list. Drop a WebBrowser control onto your form and put this code on Form_Load event:
WebBrowser.Navigate "www.vb-world.net"
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
-
Dec 13th, 1999, 07:46 PM
#3
Lively Member
rmiller, you can't get the functions... out of a compiled dll. You could try a decompiler, but I don't think you'll succeed.
-
Dec 13th, 1999, 07:52 PM
#4
Hyperactive Member
If it's an ActiveX dll, you can set a reference to the dll and use the object browser to check things out.
If it's a "normal" dll (you have to declare the functions like for API calls) you can use quickview to see exported functions, but you can't see parameters.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|