JumpsInLava
Regular
- Joined
- Sep 17, 2003
- Messages
- 55
Hi everybody.
I'm launching an app kinda like this:
Then I'm doing some other stuff kinda like this:
How do I restore or maximize the other app if it has been minimized?
I'm launching an app kinda like this:
Visual Basic:
Dim duhProcess As Process = New Process
duhProcess.StartInfo.FileName = "Notepad"
duhProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal
duhProcess.Start()
Then I'm doing some other stuff kinda like this:
Visual Basic:
'need sumthin here
AppActivate(duhProcess.Id)
SendKeys.SendWait("This is text.")
How do I restore or maximize the other app if it has been minimized?