In the below code I am using the hook global event and I want to highlight the cursor point when Starter function is executing.
Starter
private void Starter(int cnt) { try { if (cnt > 0) { Hook.GlobalEvents().MouseClick += CallingShow; System.Windows.Forms.Application.Run(new ApplicationContext()); } } catch (Exception ex) { ErrorLog.Log(ex); } }
2.1m questions
2.1m answers
60 comments
57.0k users