Hi
How can I to capture the handle of the window (control) , I tried using SPY++ no returned class name , only static Attachment 126817
Printable View
Hi
How can I to capture the handle of the window (control) , I tried using SPY++ no returned class name , only static Attachment 126817
Does have a class name: Static is a valid, system, class name
https://msdn.microsoft.com/en-us/lib...(v=vs.85).aspx
OCR? If the entire window is a static control, that likely means that it is custom drawn (similar to a grid drawn on a picturebox). If the control does not offer any messages (to be used with SendMessage API) to retrieve data/info, nothing that helps comes to mind
That's one of the few legitimate purposes for reading a memory address of an external application.
I happen to be writing a memory reading wrapper DLL for this on github (should take a few more days to make it function)
which does all the internals for you (feel free to contribute)
using\googling about ReadProcessMemory will probably get you faster if all you want is reading a text content.