CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Mouse movement

  1. #1
    Join Date
    Nov 1999
    Location
    California, USA
    Posts
    40

    Mouse movement

    how do i make the mouse move, just a little bit while on the form? say every minute. thanks

    PanasonicSubz

  2. #2
    Join Date
    Dec 1999
    Location
    Israel
    Posts
    101

    Re: Mouse movement

    Use API function mouse_event() or for NT MouseEventEx() and add call of these function to Timer
    event, using your desired coordinates. You can also use API function SendInput(), but it doesn't work
    in Win 95. A very good example of working with these functions you can find in
    http://www.vbgreatone.8m.com

    Good Luck!


  3. #3
    Join Date
    Aug 1999
    Location
    US, Florida
    Posts
    817

    Re: Mouse movement

    LOL, nice try on busting that AllAdvantage toolbar


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

Featured