-
Check a dll
Sorry, didnt know what forum to put this in..
i have a dll here, and id like to be able to read the stuff it can do, with the object browser..i hope you understand..
lets say the dll is called cat.dll, how would i put it in my form and open it with object browser?thx
-
Re: Check a dll
Go to Project > References... > click "Browse..." and locate your dll, select it and click ok.
Then use the object browser to "browse" through its methods/functions, etc.
You can not add a dll to a form, usually they are reference types of objects. Ocx components
are usually the types that have a GUI and can be added to the forms visibly.
HTH
-
Re: Check a dll
every dll i click on says it cant be added, any reason? this blows if i cant choose any dll
-
Re: Check a dll
Certain dlls cant be added because the authors wrote it that way. Try it on one that
should be allowed to make sure everything else is ok. Try one like the "shell32.dll"
in windows\system32 directory.
-
Re: Check a dll
did shell.dll, same error, shell32.dll works..
man this blows..
is there a way to hex edit them?
-
Re: Check a dll
Not to my knowledge, but I havent really got into that area either so I may
not be the best to answer that. :thumb:
-
Re: Check a dll
well this stinks.
the only dll ive ever found, to be able to write over a dx game, i cant use atm :sick:
-
Re: Check a dll
Maybe you can find some documentation on shell.dll over at msdn on what methods
it contains and how to use them. Then you can use late binding to program against it.