Retrieving all the open windows' titles

Post Reply
Mdandrea
Posts: 21
Joined: Wed Nov 23, 2005 12:24 am

Retrieving all the open windows' titles

Post by Mdandrea »

Good day

I remember seeing somewhere a sample of code that retrieves all the open windows' title text. I just don't remember how to do it or where it was. If anyone has code I would appreciate it.


TIA

MD'Andrea
User avatar
Enrico Maria Giordano
Posts: 8775
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 7 times
Contact:

Re: Retrieving all the open windows' titles

Post by Enrico Maria Giordano »

Here it is:

Code: Select all | Expand

#include "Fivewin.ch"#define GW_HWNDFIRST 0#define GW_HWNDLAST  1#define GW_HWNDNEXT  2#define GW_HWNDPREV  3#define GW_OWNER     4#define GW_CHILD     5FUNCTION MAIN()    LOCAL hWnd := GETFOREGROUNDWINDOW()    WHILE hWnd != 0        IF GETWINDOW( hWnd, GW_OWNER ) = 0 .AND. ISWINDOWVISIBLE( hWnd ) .AND. !EMPTY( GETWINDOWTEXT( hWnd ) )            ? GETWINDOWTEXT( hWnd )        ENDIF        hWnd = GETWINDOW( hWnd, GW_HWNDNEXT )    ENDDO    RETURN NILDLL32 STATIC FUNCTION GETFOREGROUNDWINDOW() AS LONG;      PASCAL FROM "GetForegroundWindow" LIB "user32.dll"


EMG
Mdandrea
Posts: 21
Joined: Wed Nov 23, 2005 12:24 am

Post by Mdandrea »

Thank you !
Post Reply