Returns the top-level CWnd whose window class is given by lpszClassName and whose window name, or title, is given by lpszWindowName.
static CWnd* PASCAL FindWindow( LPCTSTR lpszClassName, LPCTSTR lpszWindowName );
Points to a null-terminated string that specifies the window's class name (a WNDCLASS structure). If lpClassName is NULL, all class names match.
Points to a null-terminated string that specifies the window name (the window's title). If lpWindowName is NULL, all window names match.
Identifies the window that has the specified class name and window name. It is NULL if no such window is found.
The CWnd* may be temporary and should not be stored for later use.
This function does not search child windows.
// activate an application with a window with a specific class name BOOL COneT32App::FirstInstance() { CWnd *pWndPrev, *pWndChild; // Determine if a window with the class name exists... if (pWndPrev = CWnd::FindWindow(_T("MyNewClass"),NULL)) { // If so, does it have any popups? pWndChild = pWndPrev->GetLastActivePopup(); // If iconic, restore the main window if (pWndPrev->IsIconic()) pWndPrev->ShowWindow(SW_RESTORE); // Bring the main window or its popup to the foreground pWndChild->SetForegroundWindow(); // and you are done activating the other application return FALSE; } }