blah blah blah is here! blah blah » Close

0
votes
1 answers

Start a process without it receiving focus

Is there a way to start a process so that it runs minimized on the taskbar but doesn't receive focus? This is what I'm after: Process p = new Process(); ProcessStartInfo psi = new ProcessStartInfo(); ...

0
votes
1 answers

Testing for textbox Focus

I am trying to test if my textbox has focus in visual C#. Does anybody know how I could do this? it would really help, I'm trying to make it so that when you press enter while the textbox has focus, It will preform the same command as press ...

Feedback