c++ 模拟鼠标消息不成功

代码如下希望能对计算器进行随机操作但是没反应#include"windows.h"#include"winuser.h"#include"iostream.h"#incl... 代码如下 希望能对计算器进行随机操作 但是没反应
#include "windows.h"
#include "winuser.h"
#include "iostream.h"
#include "cstdlib"
#include "ctime"

int main(int argc, char *argv[])
{
HWND hwnd3;
RECT rect;
while(1)
{
hwnd3=FindWindow(NULL,"计算器");
GetWindowRect(hwnd3,&rect);
int x1=rect.right;
int x2=rect.left;
int y1=rect.bottom;
int y2=rect.top;
srand(time(0));
int i,j;
for(int k=0;k<100;k++){
i=rand()%(x1-x2);
j=rand()%(y1-y2);
if(PostMessage(hwnd3, WM_LBUTTONDOWN, MK_LBUTTON, MAKELONG(i,j)))
cout<<MAKELONG(i,j)<<endl;
PostMessage(hwnd3, WM_LBUTTONUP, MK_LBUTTON, MAKELONG(i,j));
}
}
return 0;
}
展开
 我来答
迷惘中的东王
2011-04-11 · TA获得超过1114个赞
知道小有建树答主
回答量:163
采纳率:0%
帮助的人:273万
展开全部
win自带的计算器不支持外部消息~
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式