0

I need to create a program that can record user clicks for another Windows application. Essentially my program should read a data file and automatically run another application and enter the data. I understand that there are process automation tools but they are prohibitively expensive for one-time use. For refernce of this forum a simimar question was asked in past but was not answered so recreating it.

Capturing user events (button clicks etc) from another Windows application

Thanks

Namit
  • 331
  • 3
  • 7

2 Answers2

0

https://msdn.microsoft.com/en-us/library/ms747327(v=vs.110).aspx

check this reference, for some time UI Automation is built in into VS. You don't have to rely on expensive tools to do so.

Marcin
  • 121
  • 7
0

I think you need global mouse event listener. Something like this: https://www.codeproject.com/Articles/7294/Processing-Global-Mouse-and-Keyboard-Hooks-in-C

Hadar Ben David
  • 189
  • 1
  • 8