Given the form
System.Windows.Forms::Form Form1;
and the window handle
HWND hWnd;
How can I set hWnd to t
I found a solution, and don't care if it's a kludge.
hWnd = static_cast<HWND>(Handle.ToPointer());
Works.