In the good ole days (or bad ole days depending on your perspective) I
would have used the Win32 API 'IsWindow(hWnd)'. I know that I can
still do this now with p/invoke but I am wondering if the Framework
provides a similar function.
Thanks,
Steve
No, it doesn't. As window handles are an unmanaged concept, basically
foreign to managed code, you have to use unmanaged code to test for
validity.
Pete