<?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[Minimize to Tray &amp;amp; SDI]]></title><description><![CDATA[<p>Hallo</p>
<p>wie man eine Dialogbasierende Anwendung in den Traybereich bekommt findet man hier ja 1000 Beiträge zu. Aber ich will das bei ner SDI machen und da find ich hier garnichts <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /><br />
Ich hab schon ne ganze weile dran getüddelt.. aber nu brauch ich mal wieder eure Hilfe. *schäm* <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/54319/minimize-to-tray-amp-sdi</link><generator>RSS for Node</generator><lastBuildDate>Mon, 01 Jun 2026 15:46:50 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/54319.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 06 Nov 2003 12:14:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Minimize to Tray &amp;amp; SDI on Thu, 06 Nov 2003 12:14:48 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>wie man eine Dialogbasierende Anwendung in den Traybereich bekommt findet man hier ja 1000 Beiträge zu. Aber ich will das bei ner SDI machen und da find ich hier garnichts <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /><br />
Ich hab schon ne ganze weile dran getüddelt.. aber nu brauch ich mal wieder eure Hilfe. *schäm* <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f621.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--pouting_face"
      title=":rage:"
      alt="😡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/387979</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/387979</guid><dc:creator><![CDATA[MeisterMichi]]></dc:creator><pubDate>Thu, 06 Nov 2003 12:14:48 GMT</pubDate></item><item><title><![CDATA[Reply to Minimize to Tray &amp;amp; SDI on Thu, 06 Nov 2003 17:16:10 GMT]]></title><description><![CDATA[<p>Ahh ich hab es nun geschaft.<br />
In der CMailFrame</p>
<pre><code class="language-cpp">void CMainFrame::OnSize(UINT nType, int cx, int cy) 
{
	CFrameWnd::OnSize(nType, cx, cy);
	if (nType == SIZE_MINIMIZED)
	{
		NOTIFYICONDATA tnd; 
	    ZeroMemory(&amp;tnd, sizeof (NOTIFYICONDATA)); 
	    tnd.cbSize = sizeof (NOTIFYICONDATA); 
	    tnd.hWnd = this -&gt;m_hWnd; 
	    tnd.uID = 1; 
	    tnd.uFlags = NIF_MESSAGE|NIF_ICON|NIF_TIP; 
	    tnd.uCallbackMessage = WM_NOTIFICATION; 
	    tnd.hIcon = (HICON) LoadImage(AfxGetApp()-&gt;m_hInstance,MAKEINTRESOURCE(IDI_MINI),IMAGE_ICON,16,16,LR_SHARED|LR_DEFAULTCOLOR);
	    tnd.szTip[63]='\0'; 
	    lstrcpyn(tnd.szTip,&quot;Progname&quot;,sizeof(tnd.szTip)); 
	    Shell_NotifyIcon(NIM_ADD,&amp;tnd); 
	    ShowWindow(SW_HIDE);
	} 
}
</code></pre>
<p>Aber wie bekomm ich da nu n menü rein?</p>
<p>OnTrayNotifikation find ich nicht bei meiner SDI Anwendung</p>
]]></description><link>https://www.c-plusplus.net/forum/post/388282</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/388282</guid><dc:creator><![CDATA[MeisterMichi]]></dc:creator><pubDate>Thu, 06 Nov 2003 17:16:10 GMT</pubDate></item></channel></rss>