how can i get a list or something of current windows open?

tahu191

Well-known member
Joined
Oct 27, 2005
Messages
48
Location
USA
Programming Experience
Beginner
i need to find out what windows are open during program execution, is there any way of doing this?
 
You could mean other applications (Process.GetProcesses) or your own open forms (Application.OpenForms).
 
When you say "A list of other windows open" - what exactly do you mean by this? An array of strings of window titles?
 
Back
Top