Click here to Skip to main content
15,889,724 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends.

I have seen many VB.Net source codes, that there are so many libraries (for example user32.dll) are used there.
For example

Private Declare Function CallNextHookEx Lib "user32"............

But I can't understand that why these libraries are used. And What functions are there in each library. And Where can I find the detail of these libraries and the use of their functions. Is there any site or Documentation related to them exists? If exists then where? Plz guide me.

Plz Help me in this problem.
Waiting for a satisfactory response.
Posted

You use these kinds of libraries when you need to do something "closer to the metal" than .Net allows. There are too many examples to give you a comprehensive list. In eight out of ten apps that you write, you probably won't need to use the Windows API directly.
 
Share this answer
 
Comments
rashidfarooq 19-Sep-10 7:25am    
But Now I need to use the lib user32.dll in one of my application. So, can you plz provide me the link of the list in which i can find the detail of these libraries.
User32.DLL is one of the core libraries of Windows itself, along with things like Kernel32.DLL.

Have a read here: http://en.wikipedia.org/wiki/Windows_API[^]

After that, look for info at MSDN
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900