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?
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.