hitechoutlaw
Well-known member
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:
[VB]
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
(sumthang)
End If
End If
Next
[/VB]
i was thinking along the lines of:
[VB]
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
(sumthang)
End If
End If
Next
[/VB]