The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Did you guys figure out how to do SendMessage in C# other than doing a DllImport on user32.dll?
You would think msft would provide a wrapper for this widely used call....
DJDaniel Jebaraj Syncfusion Team September 14, 2004 08:04 AM
Hi,
No, we use SendMessage just the same way. The .NET framework also uses SendMessage (declared in internal class UnsafeNativeMethods).
public static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);
Best regards,
Daniel
Syncfusion, Inc
>Did you guys figure out how to do SendMessage in C# other than doing a DllImport on user32.dll?
>
>You would think msft would provide a wrapper for this widely used call....
>