
How can I get The Handle of a VBasic 5.0 Form in VC++ 5.0
Quote:
> Have you tried:
> hWndNext = FindWindow( NULL, "Window's Title" );
[snip]
it's easier (from the side of the form): Form1.hWnd will give you the
handle
pass it like this: ByVal hwnd As Long
it's "tidier" to get the handle from the side of the control, by using
Parent, but that's also a little harder