开发者

What to do when spy++ doesnt give any details to extract from software?

开发者 https://www.devze.com 2023-02-22 10:39 出处:网络
I have some software that needs some info mining like getting text from controls/listiews et开发者_C百科c.. The thing is that spy++ cant detect any controls, much less the text from them.

I have some software that needs some info mining like getting text from controls/listiews et开发者_C百科c.. The thing is that spy++ cant detect any controls, much less the text from them.

I figure the software is made in something unknown to c++/mfc/winapi

So what are my choices here, what can i do?

It seems winapi wont work here at all?


Microsoft has a window less UI toolkit called DirectUI, other applications might use similar controls. HWND based tools are not going to help you there, your best option is probably to try the accessibility api.


Spy++ works directly with the child window controls and menu's that are not used so much anymore.

As such, the most reliable way to extract information nowdays from Windows is to use the UI Accessibility APIs.


The text might be custom-rendered by the app. Try Anders' suggestion of the accessibility API first but, if that fails, you're into OCR territory.

0

精彩评论

暂无评论...
验证码 换一张
取 消