|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#2
|
|
Re: Computer playing Bejeweled Blitz project
MSDN is your friend
![]() http://msdn.microsoft.com/en-us/libr...8VS.85%29.aspx This function allows you to move the mouse: Code:
BOOL WINAPI SetCursorPos( __in int X, __in int Y ); X and Y are absolute coordinates on the screen with 0,0 being the upper left corner of the screen It returns a boolean value. It is a similar call to get the cursor's position Code:
BOOL WINAPI GetCursorPos(
__out LPPOINT lpPoint
)
typedef struct {
LONG x;
LONG y;
} POINT;
|
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Computer Science or Computer Engineering? | KRibordy | College & University Education | 14 | 09-10-2009 01:56 |
| saving project as a new project | windell747 | NI LabVIEW | 3 | 01-02-2009 04:41 |
| Music Playing Problem on Computer | John Gutmann | Chit-Chat | 9 | 31-07-2007 17:04 |
| pic: Kaizen Blitz Presents... The Blitz Box 2006 | Ian Curtis | Robot Showcase | 0 | 24-02-2006 16:47 |
| The Blitz is a GO!! | Erin Rapacki | Off-Season Events | 6 | 06-06-2003 19:31 |