Hi,
I list windows through EnumChildWindows() Is it possible to find out which application a particular window belongs to ?
Hi,
I list windows through EnumChildWindows() Is it possible to find out which application a particular window belongs to ?
You may use:
local cTaskName := Space( 100 )
GetWindowModuleFileName( hWnd, cTaskName, 100 )
Thanks !