Page 1 of 1

I list windows through EnumChildWindows() Is it possible to

Posted: Sat Nov 27, 2021 8:53 pm
by Natter
Hi,

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

Re: I list windows through EnumChildWindows() Is it possible to

Posted: Sun Nov 28, 2021 9:56 am
by Antonio Linares
You may use:

local cTaskName := Space( 100 )

GetWindowModuleFileName( hWnd, cTaskName, 100 )

Re: I list windows through EnumChildWindows() Is it possible to

Posted: Sun Nov 28, 2021 10:25 am
by Natter
Thanks !