Get text from another application

后端 未结 4 527
感动是毒
感动是毒 2020-12-11 09:23

I\'d like to retrieve text from textbox in my another application. ProcessName from second application is \'TestTextBox\', TextBox\'s name is \'textBox1\'.

My code,

4条回答
  •  难免孤独
    2020-12-11 09:49

    You are getting the WindowHandle of the main Form in the code you posted, according to MSDN a GETTEXT message to a Form should return its title. If you want to get text from a TextBox you should be passing the WindowHandle of the TextBox as the first argument.

提交回复
热议问题