Results 1 to 2 of 2

Thread: [2005] Activity with other programs on the computer

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jan 2008
    Posts
    1,754

    [2005] Activity with other programs on the computer

    Hello, i want to know how the following programs work so i can get an understanding to improve my coding and for future programs.

    • A Bot for a game let's say a runescape typing bot or a warcraft 3 clan bot
      A on-screen keyboard
      etc...


    I want to know how a on-screen keyboard interacts with other software. When you click the A button on the on-screen keyboard it types in a A to the selected textbox on any program. The on-screen keyboard isnt really selected so everythiing else looses focus.


    Something i really want to know:
    I want to know how a typing bot for certain games function. How does it match string values with the string values in textboxes of the game (of a different program then its self).

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: [2005] Activity with other programs on the computer

    If you want to send text to a specific window then you need to first get the handle of that window using the FindWindow and FindWindowEx API functions, then send the actual text using the SendMessage API function. There are numerous examples posted on the forum already, so I suggest a search.

    As for an on-screen keyboard, that would be different because it should just type into whatever window has focus, just like a regular keyboard. The trick there is to prevent the keyboard window stealing focus when you press a key. See the On-screen Keyboard link in my signature for more information.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width