Forum: C++ Jun 11th, 2004 |
| Replies: 16 Views: 48,919 Here it is:
/*++ BUILD Version: 0001 Increment this if a change has global effects
Copyright (c) 1985-1997, Microsoft Corporation
Module Name: |
Forum: C++ Jun 8th, 2004 |
| Replies: 16 Views: 48,919 to meabed:
Hi, I appreciate very much your thorough explanation, but what I need is not getting mouse pointer coordinates, rather setting them. I want to move using my program mouse pointer so... |
Forum: C++ Jun 8th, 2004 |
| Replies: 16 Views: 48,919 to WebHoststalk:
Here are the sources, compiled in VC++ 6.0. |
Forum: C++ Jun 7th, 2004 |
| Replies: 16 Views: 48,919 Hi,
I'm using windows XP and trying to simulate mouse movement and mouse clicks. The following code supposed to move mouse to absolute position (100,100) and perform a click:
//test.cpp file:
... |
Forum: C++ Jun 7th, 2004 |
| Replies: 7 Views: 30,325 I'm trying to compile the following program (file named test.cpp):
#include "stdafx.h"
int main(int argc, char* argv[]){
INPUT *buffer = new INPUT[1]; //allocate a buffer
... |