|
-
Jun 22nd, 2006, 01:22 PM
#1
Thread Starter
Junior Member
Form manipulation via Process
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|