User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the C# section within the Software Development category of DaniWeb, a massive community of 374,512 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,927 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our C# advertiser:
Feb 14th, 2008
Views: 2,858
Though .Net classes are vast and versatile at time you will have to resort to Win32 API calls for accomplishing certain tasks.

The following code shows a simple example of invoking a Win32 api.

The best way to use Win32 apis is to encapsulate it in a class module.
The namespace for COM interop is System.Runtime.InteropServices.
The method name should have DllImport attribute specifying the name of the dll. Here the dll is user32. Other dlls are Gdi and Kernel.
Last edited : Feb 15th, 2008.
csharp Syntax | 4 stars
  1. //Class
  2. using System.Runtime.InteropServices;
  3.  
  4. namespace SwapMouseEg {
  5.  
  6. class SwapMouse {
  7. [DllImport("user32.dll")]
  8. public static extern Int32 SwapMouseButton(Int32 bSwap);
  9. }
  10. }
  11.  
  12. //Form
  13. private void btnSwap_Click(object sender, EventArgs e)
  14. {
  15. SwapMouse.SwapMouseButton(1);
  16. }
  17. private void btnReset_Click(object sender, EventArgs e) {
  18. SwapMouse.SwapMouseButton(0);
  19. }
Post Comment

Only community members can submit or comment on code snippets. You must register or log in to contribute.

DaniWeb Marketplace (Sponsored Links)
All times are GMT -4. The time now is 2:30 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC