How to get dll's functions?
-
Hello! I wanna know window dll file's built in function. Could u help me any links or any E-books? I'll thz u very much.......... :laugh: :laugh: :laugh:
-
Hello! I wanna know window dll file's built in function. Could u help me any links or any E-books? I'll thz u very much.......... :laugh: :laugh: :laugh:
phowarso wrote:
I wanna know window dll file's built in function.Could u help me any links or any E-books?
Anything specific? Windows is "huge" in terms of code, and there's no complete list with all functions. If you're just interested in browsing then you might want to check out PInvoke.NET[^]
I are Troll :suss:
-
Hello! I wanna know window dll file's built in function. Could u help me any links or any E-books? I'll thz u very much.......... :laugh: :laugh: :laugh:
You can call it by using reflection feature of dotnet. Try following links.. It will guide you method invocation from DLL. http://my.execpc.com/~gopalan/dotnet/reflection.html[^] Reflection in .NET[^] Hope this will help!
Jinal Desai - LIVE Experience is mother of sage....
-
Hello! I wanna know window dll file's built in function. Could u help me any links or any E-books? I'll thz u very much.......... :laugh: :laugh: :laugh:
Hi, First you need to create public methods in the DLL. if you don't have any public method then you can not call it. 1. To use any DLL in your project first you need to add it in the project in Solution Explorer-> Project -> References -> right click and select "Add References" and select dll you want to use. 2. Then in your form add create object of the dll class and then use its method. ie. DllName obj = new DllName(); obj.MethodName(); Hope this will help you. Regards, Nilesh Shah