<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[SendMessage from Dlg to CWinApp]]></title><description><![CDATA[<p>ich möchte eine message zb WM_USER+100 mit SendMessage oder PostMessage</p>
<p>an die Message Map Meiner Application schicken ..</p>
<p>#define WM_BTN_MY WM_USER+100</p>
<p>void CMyDlg::OnBnClickedMyBtn()<br />
{<br />
::PostMessage(WM_BTN_MY,0,0);<br />
}</p>
<p>BEGIN_MESSAGE_MAP(CMyApp, CWinApp)<br />
ON_COMMAND(ID_HELP, CWinApp::OnHelp)<br />
ON_MESSAGE(WM_BTN_MY, OnBnClickedMyBtnApp)</p>
<p>END_MESSAGE_MAP()</p>
<p>da kommt nichts , an was mach ich falsch ??</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/64640/sendmessage-from-dlg-to-cwinapp</link><generator>RSS for Node</generator><lastBuildDate>Fri, 05 Jun 2026 02:42:49 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/64640.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 12 Feb 2004 13:04:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to SendMessage from Dlg to CWinApp on Thu, 12 Feb 2004 13:04:09 GMT]]></title><description><![CDATA[<p>ich möchte eine message zb WM_USER+100 mit SendMessage oder PostMessage</p>
<p>an die Message Map Meiner Application schicken ..</p>
<p>#define WM_BTN_MY WM_USER+100</p>
<p>void CMyDlg::OnBnClickedMyBtn()<br />
{<br />
::PostMessage(WM_BTN_MY,0,0);<br />
}</p>
<p>BEGIN_MESSAGE_MAP(CMyApp, CWinApp)<br />
ON_COMMAND(ID_HELP, CWinApp::OnHelp)<br />
ON_MESSAGE(WM_BTN_MY, OnBnClickedMyBtnApp)</p>
<p>END_MESSAGE_MAP()</p>
<p>da kommt nichts , an was mach ich falsch ??</p>
]]></description><link>https://www.c-plusplus.net/forum/post/457721</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/457721</guid><dc:creator><![CDATA[sonnenschein]]></dc:creator><pubDate>Thu, 12 Feb 2004 13:04:09 GMT</pubDate></item><item><title><![CDATA[Reply to SendMessage from Dlg to CWinApp on Fri, 13 Feb 2004 14:09:50 GMT]]></title><description><![CDATA[<p>Wenn du in der CWinApp an die Message ran willst überlade PreTranslateMessage and bastle dort ein</p>
<pre><code class="language-cpp">if(pMsg -&gt;message == WM_BTN_MY )
{
  // na was läuft so in meiner alten heimat? =D
}
</code></pre>
<p>rein <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/458610</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/458610</guid><dc:creator><![CDATA[CMatt]]></dc:creator><pubDate>Fri, 13 Feb 2004 14:09:50 GMT</pubDate></item></channel></rss>