Link to home
Start Free TrialLog in
Avatar of Interghost
Interghost

asked on

Enumerating group box windows/controls of another proccess

I'm writting a program that will automaticly do a task in another program... everything was great until I got to the part of reading the other program's output.

The program has a group box that has several static labels (atleast they look like that) inside and I wan't to read the text on those labels, how do I do it?

...I was using FindWindowEx/EnumChildWindow which worked perfectly for everything else but I can't get the handles/text of those controls... they event don't appear in enumchildwindows
Avatar of Jaime Olivares
Jaime Olivares
Flag of Peru image

Have you tried with GetDlgItem()?
You have to scan item IDs from 1 to 32767 until the function returns a valid HWND.
Avatar of nonubik
nonubik

Try to look with Spy++ wheter they are windows or not and if they are, whose children are they.
Avatar of Interghost

ASKER

I tried Spy++ and can't find them

re: jamies.... I don't understand what do u have in mind?... that would be too complicated, I would have to go through all the numbers with all the window's as parent combinations cause I don't know which is his parent....and that could also not work cause even If I find it I wouldn't know that that is the one I'm looking for


BTW I tried another idea...setting up a hook and monitoring WM_SETTEXT but nothing... my best guess is that the letters are beeing drawn manualy
Update... after disassembly I found references to ExtTextOut so my suspicion is probably confirmed... so now is there any way to read that text?
I'm afraid there is no possibility of this. The GDI hooking is hard to implement, on win9x there was some kind of hooking API, SetDDIHook(..) function, that is no more available on NT and above (2k, xp)
I've managed to do it using screen snaps and, I guess I could call it, simple OCR... so admin please delete the question


Thnx for the replys
I think a PAQ/refund would be better (some valuable info can be found here).
ASKER CERTIFIED SOLUTION
Avatar of GhostMod
GhostMod
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial