FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour I list windows through EnumChildWindows() Is it possible to
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
I list windows through EnumChildWindows() Is it possible to
Posted: Sat Nov 27, 2021 08:53 PM

Hi,

I list windows through EnumChildWindows() Is it possible to find out which application a particular window belongs to ?

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: I list windows through EnumChildWindows() Is it possible to
Posted: Sun Nov 28, 2021 09:56 AM

You may use:

local cTaskName := Space( 100 )

GetWindowModuleFileName( hWnd, cTaskName, 100 )

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 1392
Joined: Mon May 14, 2007 09:49 AM
Re: I list windows through EnumChildWindows() Is it possible to
Posted: Sun Nov 28, 2021 10:25 AM

Thanks !

Continue the discussion