Ver Mensaje Individual
  #4  
Antiguo 08-12-2007
Avatar de Faust
Faust Faust is offline
Miembro
 
Registrado: abr 2006
Ubicación: México D.F.
Posts: 930
Reputación: 19
Faust Va por buen camino
Checa la ayuda Windows SDK

Ey amigo, checa la ayuda de Windows SDK (menú Help-> Windows SDK) y busca FindWindow.

Aqui nos dice:

The FindWindow function retrieves the handle to the top-level window whose class name and window name match the specified strings. This function does not search child windows.

Código Delphi [-]
 
HWND FindWindow(
    LPCTSTR lpClassName, // pointer to class name
    LPCTSTR lpWindowName  // pointer to window name
   );

El primer parámetro de FindWindow es el nombre de la clase de la ventana que buscas y el segundo parámetro es el nombre o el caption de la ventana que buscas.
__________________
Herr Heins Faust
Responder Con Cita