pulling info

starcraft

Centurion
Joined
Jun 29, 2003
Messages
167
Location
Poway CA
Can i make my program search for a window title of "*Anything* - Instant Message" and if it finds one copy all the text from the instant msg window into its own text bot as well as copy the window title for other use?
 
you could try something like this maybe...
Visual Basic:
        Dim pr As Process
        For Each pr In Process.GetProcesses
            If pr.ProcessName.EndsWith("- Instant Message") Then
                '/// get the main window handle and do stuff to get your text here.
            End If
        Next
 
Back
Top