#include
#include
#include
#include
int main(int argc, char* argv[])
{
//根据窗口名获取QQ游戏登录窗口句柄
HWND...hq=FindWindow(NULL,”QQ2012″);
//得到QQ窗口大小
RECT rect;
GetWindowRect(hq,&rect);
int w=rect.right-rect.left...,h=rect.bottom-rect.top;
cout<
//移动QQ窗口位置
MoveWindow(hq,100,100,w,h,false);
//得到桌面窗口
HWND hd=GetDesktopWindow...(有些窗口做了特殊处理,比如QQ是不能通过这个方法获得的)
示例:
#include “stdafx.h”
#include
#include
#include
#include
#include...=NULL)
{
memset(s,0,200);
GetWindowText(hd,s,200);
/*if (strstr(s,”QQ2012″))
{
cout<
SetWindowText