Jump to content
Xtreme .Net Talk

Recommended Posts

Posted
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?
  • Leaders
Posted

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...