starcraft Posted September 22, 2003 Posted September 22, 2003 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? Quote
Leaders dynamic_sysop Posted September 22, 2003 Leaders Posted September 22, 2003 you could try something like this maybe... 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 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.