I have a small program that's only running in the background (doesn't have any windows). It monitors key presses and when certain requirements are met, it opens specific program. The problem is that the program's window doesn't open in foreground - it opens behind currently active windows. How can I force it to open in the foreground?
I'm using Visual Basic .NET (.NET framework 4.5), this is my current code:
Dim temp As New Process
temp = Process.Start("C:\cygwin\bin\mintty.exe", "-")
temp.WaitForInputIdle(10000)