windows_programming_notes.nbk: Home | Index | Next Page: IsWindowEnabled | Previous Page: IsDlgButtonChecked


 IsWindow

The IsWindow function determines whether the specified window handle identifies an existing window.

Syntax

    BOOL IsWindow(
        HWND hWnd
        );

Parameters

Return Value

If the window handle identifies an existing window, the return value is nonzero.

If the window handle does not identify an existing window, the return value is zero.

Remarks

A thread should not use IsWindow for a window that it did not create because the window could be destroyed after this function was called. Further, because window handles are recycled the handle could even point to a different window.

Example

For an example, see Creating a Modeless Dialog Box.

Function Information


windows_programming_notes.nbk: Home | Index | Next Page: IsWindowEnabled | Previous Page: IsDlgButtonChecked


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time