-
Clicking and Filling
In VB6, I use API to control the clicking and filling of text for another program. For example, I use the API FindWindowEx to get the handle of an object. From there, I can use SendMessage to do whatever I need.
What is the best way to do that in .Net?
-
Re: Clicking and Filling
I do not know all that much about .Net as I am a pretty new to it but from what I have seen it seems that this type of communication, between two seperate applications, still requires API calls. Not sure if there are any newer/better calls that you can make though.
Josh