hitechoutlaw
Regular
is there a way to run through the processes every so often and check to see if a program has been minimized and if it is then maximize it? if so, how?
i was thinking along the lines of:
i was thinking along the lines of:
Visual Basic:
Dim processes(), p As Process
processes = Process.GetProcesses()
For Each p In processes
If Not (p.MainModule Is Nothing) Then
If System.IO.Path.GetFileName(p.MainModule.FileName).ToLower() = "game.exe" Then
[I](sumthang)[/I]
End If
End If
Next