Skip to content
Advertisement

GetWindowTextA, GetWindowText returns empty value on Edit Control

I’m trying to list and get the content of Edit Controls from an external Window in C++ / Java, unfortunately with no success.

When I call GetWindowText or GetWindowTextA it returns an empty value on Edit Controls, I know there are some differences between GetWindowText / GetWindowTextW and GetWindowTextA but I don’t know What I’m doing wrong since it works on all other controls.

Here the C++ Code:

JavaScript

Java Code:

JavaScript

Advertisement

Answer

I’m not sure what is causing your problem, but this has worked just fine for me:

JavaScript

Edit
You should get the edit text a different way, via

JavaScript

e.g.,

JavaScript
Advertisement