I list windows through EnumChildWindows() Is it possible to

Post Reply
Natter
Posts: 1241
Joined: Mon May 14, 2007 9:49 am

I list windows through EnumChildWindows() Is it possible to

Post by Natter »

Hi,

I list windows through EnumChildWindows() Is it possible to find out which application a particular window belongs to ?
User avatar
Antonio Linares
Site Admin
Posts: 42508
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 30 times
Been thanked: 73 times
Contact:

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

Post by Antonio Linares »

You may use:

local cTaskName := Space( 100 )

GetWindowModuleFileName( hWnd, cTaskName, 100 )
regards, saludos

Antonio Linares
www.fivetechsoft.com
Natter
Posts: 1241
Joined: Mon May 14, 2007 9:49 am

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

Post by Natter »

Thanks !
Post Reply