Is it possible to capture the text of say a Edit Box or Label control on a Java Applet?
In a more traditional Win32 program this can be accomplished using FindWindow
, FindWindowEx
together with things like GetWindowText
.
I have investigated with WinSpy but the Java Applet is just one large window with no children.
I am wondering if there is some similar method, perhaps specific to Java, that we could use for a Java Applet.
Thanks.