06向其他应用程序中发送键盘消息

FindWindow:返回拥有指定窗口类名或窗口名的窗口的句柄

PostMessage:将一个消息放入(寄送)到与指定窗口创建的线程相联系消息队列里,不等待线程处理消息就返回,是异步消息模式。

SetForegroundWindow:创建指定窗口的线程设置到前台,并且激活该窗口。

keybd_event:该函数合成一次击键事件。系统可使用这种合成的击键事件来产生WM_KEYUP或WM_KEYDOWN消息,键盘驱动程序的中断处理程序调用key_event函数。在WindowsNT中该函数已被使用SendInput来代替

void CSendNotepadMsgDlg::OnSend() //发送字符串
{
	// TODO: Add your control notification handler code here
	HWND hWnd = ::FindWindow("Notepad", NULL);
	if(hWnd)
	{
		HWND hEdit = FindWindowEx(hWnd, NULL, "Edit", NULL);
		if(hEdit)
		::PostMessage(hEdit, WM_CHAR, 0x48, 0);//发送‘H’到notepad
		::PostMessage(hEdit, WM_CHAR, 0x45, 0);//发送‘E’到notepad
		::PostMessage(hEdit, WM_CHAR, 0x4C, 0);//发送‘L’到notepad
		::PostMessage(hEdit, WM_CHAR, 0x4C, 0);//发送‘L’到notepad
		::PostMessage(hEdit, WM_CHAR, 0x4F, 0);//发送‘O’到notepad
	} 
	else
	{
		AfxMessageBox("请打开记事本文件!");
		return;
	}	
}

void CSendNotepadMsgDlg::OnSave() //保存文件
{
	// TODO: Add your control notification handler code here
	
	CWnd* pWnd =FindWindow("Notepad", NULL);
	if (pWnd->GetSafeHwnd())
	{
		pWnd->ShowWindow(SW_NORMAL);
		pWnd->SetForegroundWindow();
		keybd_event(VK_CONTROL, 0, 0, 0);//按下Ctrl键
		keybd_event('S', 0, 0, 0);//按下S键
		keybd_event(VK_CONTROL, 0, KEYEVENTF_KEYUP, 0);//释放Ctrl键
		keybd_event('S', 0, KEYEVENTF_KEYUP, 0);//释放S键
	}
	else
	{
		AfxMessageBox("未找到打开的记事本文件!");
		return;
	}	
}


你可能感兴趣的:(c,null)