T tahu191 Well-known member Joined Oct 27, 2005 Messages 48 Location USA Programming Experience Beginner Aug 26, 2007 #1 i need to find out what windows are open during program execution, is there any way of doing this?
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,858 Location Norway Programming Experience 10+ Aug 26, 2007 #2 You could mean other applications (Process.GetProcesses) or your own open forms (Application.OpenForms). Upvote 0 Downvote
You could mean other applications (Process.GetProcesses) or your own open forms (Application.OpenForms).
T tahu191 Well-known member Joined Oct 27, 2005 Messages 48 Location USA Programming Experience Beginner Aug 26, 2007 #3 i meant other applications, but how would I implement that? Upvote 0 Downvote
cjard Well-known member Joined Apr 25, 2006 Messages 7,081 Programming Experience 10+ Aug 27, 2007 #4 When you say "A list of other windows open" - what exactly do you mean by this? An array of strings of window titles? Upvote 0 Downvote
When you say "A list of other windows open" - what exactly do you mean by this? An array of strings of window titles?
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,858 Location Norway Programming Experience 10+ Aug 27, 2007 #5 Here's a sample code (post 2). Upvote 0 Downvote