Hello!, I think this is an interesting challenge for many of you
Is there a way to get the content of a textbox or richtextbox in
another program, given the handle of the control?
I have seen other applications which can do this, so it is possible.
There are two interesting ways to do this:
1. Asynchronously:
A simple function like: getTextboxContent(handle) as String,
which gets all the content of the textbox
2. Synchronously:
A way to register your own callback function which
is called with the new content whenever the textbox is modified:
callBack(dump)
Does anyone have an idea as to how to specifically to either one of
these, preferably both.
NOTICE: The textbox or richtextbox is in another program which
has nothing to do with our program or VB.NET
Is there a way to get the content of a textbox or richtextbox in
another program, given the handle of the control?
I have seen other applications which can do this, so it is possible.
There are two interesting ways to do this:
1. Asynchronously:
A simple function like: getTextboxContent(handle) as String,
which gets all the content of the textbox
2. Synchronously:
A way to register your own callback function which
is called with the new content whenever the textbox is modified:
callBack(dump)
Does anyone have an idea as to how to specifically to either one of
these, preferably both.
NOTICE: The textbox or richtextbox is in another program which
has nothing to do with our program or VB.NET