3

I want to read the value of a textbox. For example, "UserID" of TeamViewer from an application in C#. How can I do it?

Put in another way, I want to write an application that read the user id and password from TeamViewer.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131

1 Answers1

2

You need to take help of user32.dll functions. Its an unsafe OS level library and allows you to access other running Applications on the platform. There is one more StackOverflow solution related to your problem at: How to read another windows from a different program and Get text from another application

Community
  • 1
  • 1
Sanket Tarun Shah
  • 637
  • 10
  • 28