/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Process[] localprocesses; while(true) { localprocesses = Process.GetProcessesByName("application name"); if (localprocesses.Length > 0) { Console.SetWindowPosition(0, 0); Console.SetWindowSize(Console.LargestWindowWidth, Console.LargestWindowHeight); Console.Beep(1400, 1000); } }