Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > getting handle of child window with input focus

Reply
Thread Tools Display Modes

getting handle of child window with input focus

 
 
Bob
Guest
Posts: n/a

 
      08-15-2008
There's a Windows API function that provides various information about
top-level windows, but I can't remember its name. One of the values it
makes available is the window handle of the child window that has the input
focus.

Hopefully that's enough info so someone will think of the name of the
function and post it for me

Thanks,
Bob

 
Reply With Quote
 
 
 
 
Bob
Guest
Posts: n/a

 
      08-16-2008
typedef struct tagGUITHREADINFO {
DWORD cbSize;
DWORD flags;
HWND hwndActive;
HWND hwndFocus;
HWND hwndCapture;
HWND hwndMenuOwner;
HWND hwndMoveSize;
HWND hwndCaret;
RECT rcCaret;
} GUITHREADINFO, *PGUITHREADINFO;

BOOL GetGUIThreadInfo( DWORD idThread,
LPGUITHREADINFO lpgui
);

DWORD GetWindowThreadProcessId( HWND hWnd,
LPDWORD lpdwProcessId
);

"Bob" <> wrote in message
news:eS8k80v$...
> There's a Windows API function that provides various information about
> top-level windows, but I can't remember its name. One of the values it
> makes available is the window handle of the child window that has the
> input focus.
>
> Hopefully that's enough info so someone will think of the name of the
> function and post it for me
>
> Thanks,
> Bob
>


 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Window Focus bug JethroUK Windows Vista General Discussion 5 03-08-2009 12:40 PM
Input focus lost at logon screen Windows Vista General Discussion 3 09-27-2008 12:45 AM
Window Focus microsvc Windows Vista General Discussion 2 08-18-2008 05:38 PM
once iTunes looses the input focus, the CDROM device disappears inthe iTunes application Holger Birkmeyer Windows Vista General Discussion 2 07-18-2007 07:09 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59