Does anybody know how to manipulate the attributes of a form (Visibility, Minimize, Maximize, etc.) when you have the process. For example:

Dim proc() As Process = Process.GetProcessesByName("notepad")
If proc.Length > 0 Then
Dim p As Process = proc(0)
'How do I get control (if possible) to be able to manipulate the form and
'or send form events to it?
End If