H
Hogan's Goat
Hi, another newbie question on my slow-paced learning curve.
I've got this code that's pretty cool in that it gets the title of all
currently running apps and populates a combobox.
Dim objProcess As Process
cboProcessesList.Items.Clear()
For Each objProcess In System.Diagnostics.Process.GetProcesses
If objProcess.MainWindowTitle <> "" Then
cboProcessesList.Items.Add(objProcess.MainWindowTitle)
End If
Next
So far so good. I want to be able to use the selected app from the
combobox to get the screen location of the app and also its height and
width. So basically I want to know the bounding box for the app and its
screen location, and to track it if the user moves it while running my app.
First one to reply gets a free copy of the finished product!
Hogan out.
I've got this code that's pretty cool in that it gets the title of all
currently running apps and populates a combobox.
Dim objProcess As Process
cboProcessesList.Items.Clear()
For Each objProcess In System.Diagnostics.Process.GetProcesses
If objProcess.MainWindowTitle <> "" Then
cboProcessesList.Items.Add(objProcess.MainWindowTitle)
End If
Next
So far so good. I want to be able to use the selected app from the
combobox to get the screen location of the app and also its height and
width. So basically I want to know the bounding box for the app and its
screen location, and to track it if the user moves it while running my app.
First one to reply gets a free copy of the finished product!
Hogan out.