用这样的方法获取当前活动网页的标题对不对呢
请问大家,用这样的方法获取当前活动网页的标题对不对呢,
请大家给修改一下把,谢谢了
#include <stdio.h>
#include <windows.h>
HWND hw;
LONG hh;
char aa[100];
int WINAPI
WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)
{
do{
hw=GetForegroundWindow(); //这2句用的对不对呢,能不能获取当前活动网页的标题
hh=GetWindowText(hw,aa,100);//呢请大家指点
}
while(hh== NULL );
if(hw!=NULL)
{
MessageBox(NULL,"好啊","啊",0);
}
return 0;
}