摘要: 打开文件 按钮被单击事件 直接复制以下代码即可 打开网站 按钮被单击事件 直接复制以下代码即可 阅读全文
posted @ 2015-06-06 18:03 银月星 阅读(5866) 评论(0) 推荐(0) 编辑
摘要: SetTmer函数调用 #include <iostream> 取时间函数调用 计时函数 阅读全文
posted @ 2015-06-06 17:57 银月星 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 时钟的使用 1、声明 VOID CALLBACK playproc( HWND hwnd, // handle of window for timer messages UINT uMsg, // WM_TIMER message UINT idEvent, // timer identifier 阅读全文
posted @ 2015-06-06 17:53 银月星 阅读(521) 评论(0) 推荐(0) 编辑
摘要: // 1、FindWindow //获取窗口句柄 //2、GetWindowThreadProcessId //获取窗口进程ID //3、OpenProcess //打开指定进程 //4、ReadProcessMemory //读指定进程 内存数据 HWND gameh=::FindWindow(N 阅读全文
posted @ 2015-06-06 17:43 银月星 阅读(198) 评论(0) 推荐(0) 编辑
摘要: HWND h; RECT r1; POINT p;//x,y void ONCE() { h=::FindWindow(NULL,"biaoti"); ::GetWindowRect(h,&r1); //保存当前鼠标指针 //取得当前鼠标位置 GetCursorPos(&p); //设置鼠标指针位置 取坐标:x=273;y=273 /... 阅读全文
posted @ 2015-06-06 11:33 银月星 阅读(1195) 评论(0) 推荐(0) 编辑
摘要: 这个函数呢,我一般用来自动刷刷网页啥的比如我最近就在刷52破解的在线时间,好啦怎么用是你自己的事情。 FindWindow()主要用来获取目标句柄 或着说窗口的权限 调用://示例52破解挂在线时间 HWND 52pj; 52pj=::FindWindow( NULL,"地址组合控制"); HWND 阅读全文
posted @ 2015-06-06 11:15 银月星 阅读(967) 评论(0) 推荐(0) 编辑
摘要: 数据更新函数: UpdateData(false); 控件的关联变量的值传给控件并改变控件状态(程序 >EXE) UpdateData(true); 控件的状态传给其关联的变量(EXE >程序) 阅读全文
posted @ 2015-06-06 11:09 银月星 阅读(216) 评论(0) 推荐(0) 编辑