Chinaunix首页 | 论坛 | 博客
  • 博客访问: 25801
  • 博文数量: 7
  • 博客积分: 230
  • 博客等级: 二等列兵
  • 技术积分: 90
  • 用 户 组: 普通用户
  • 注册时间: 2009-08-28 10:47
文章分类
文章存档

2011年(2)

2010年(1)

2009年(4)

我的朋友

分类: C/C++

2011-02-17 11:43:46

很简单,但是可以不再见到“腾讯网新闻”了,省去手动关闭之烦恼!

// CloseWin.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "windows.h"
#pragma comment(linker,"/subsystem:\"windows\" /entry:\"mainCRTStartup\"")

int main(int argc, _TCHAR* argv[])
{
while(1)
{
HWND hWnd = FindWindow(_T("TXGuiFoundation"),_T("腾讯网新闻"));
if (hWnd)
{
SendMessage(hWnd,WM_SYSCOMMAND,SC_CLOSE,NULL);
}
Sleep(5000);
}
return 0;
}
阅读(560) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~