<?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[list fenster]]></title><description><![CDATA[<p>ich hab probiert einen dialog mit list fenster zu erstellen. Leider seh ich keine einträge in dem ding hier meine wndproc:</p>
<pre><code class="language-cpp">BOOL CALLBACK EntityDlgProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch(message)
	{
	case WM_INITDIALOG:
		SendMessage(GetDlgItem(hDlg, 1), LB_ADDSTRING, 0, (WPARAM)(LPSTR)&quot;Eingang&quot;);
		SendMessage(GetDlgItem(hDlg, 1), LB_ADDSTRING, 0, (WPARAM)(LPSTR)&quot;Verkauf&quot;);
		return TRUE;
	case WM_DESTROY:
		SendMessage(GetDlgItem(hDlg, 1), LB_RESETCONTENT, 0, 0);
		break;
	case WM_COMMAND:
		switch(LOWORD(wParam))
		{
		case 0:
			EndDialog(hDlg, 0);
			break;
		}
	}
	return FALSE;
}
</code></pre>
<p>ressource:</p>
<pre><code>LANGUAGE LANG_NEUTRAL, 0
ENTITY DIALOG 0, 0, 195, 77
STYLE DS_FIXEDSYS |DS_SETFONT |WS_POPUP |WS_VISIBLE |WS_SYSMENU |WS_THICKFRAME |WS_MAXIMIZEBOX |WS_MINIMIZEBOX |WS_CAPTION 
CAPTION &quot;Entity erstellen&quot;
FONT 8, &quot;Ms Shell Dlg&quot;
BEGIN
  CONTROL &quot;Weiter&quot;,0,&quot;BUTTON&quot;,BS_DEFPUSHBUTTON |BS_VCENTER |BS_CENTER |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,75,46,55,17
  CONTROL &quot;&quot;,1,&quot;COMBOBOX&quot;,CBS_DROPDOWN |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,47,13,112,14
END
</code></pre>
<p>Hoffe mir kann jemand helfen thx.</p>
<p>mfg tobZel</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/190639/list-fenster</link><generator>RSS for Node</generator><lastBuildDate>Wed, 01 Jul 2026 20:51:55 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/190639.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 24 Aug 2007 16:59:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to list fenster on Fri, 24 Aug 2007 16:59:39 GMT]]></title><description><![CDATA[<p>ich hab probiert einen dialog mit list fenster zu erstellen. Leider seh ich keine einträge in dem ding hier meine wndproc:</p>
<pre><code class="language-cpp">BOOL CALLBACK EntityDlgProc (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch(message)
	{
	case WM_INITDIALOG:
		SendMessage(GetDlgItem(hDlg, 1), LB_ADDSTRING, 0, (WPARAM)(LPSTR)&quot;Eingang&quot;);
		SendMessage(GetDlgItem(hDlg, 1), LB_ADDSTRING, 0, (WPARAM)(LPSTR)&quot;Verkauf&quot;);
		return TRUE;
	case WM_DESTROY:
		SendMessage(GetDlgItem(hDlg, 1), LB_RESETCONTENT, 0, 0);
		break;
	case WM_COMMAND:
		switch(LOWORD(wParam))
		{
		case 0:
			EndDialog(hDlg, 0);
			break;
		}
	}
	return FALSE;
}
</code></pre>
<p>ressource:</p>
<pre><code>LANGUAGE LANG_NEUTRAL, 0
ENTITY DIALOG 0, 0, 195, 77
STYLE DS_FIXEDSYS |DS_SETFONT |WS_POPUP |WS_VISIBLE |WS_SYSMENU |WS_THICKFRAME |WS_MAXIMIZEBOX |WS_MINIMIZEBOX |WS_CAPTION 
CAPTION &quot;Entity erstellen&quot;
FONT 8, &quot;Ms Shell Dlg&quot;
BEGIN
  CONTROL &quot;Weiter&quot;,0,&quot;BUTTON&quot;,BS_DEFPUSHBUTTON |BS_VCENTER |BS_CENTER |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,75,46,55,17
  CONTROL &quot;&quot;,1,&quot;COMBOBOX&quot;,CBS_DROPDOWN |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,47,13,112,14
END
</code></pre>
<p>Hoffe mir kann jemand helfen thx.</p>
<p>mfg tobZel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351349</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351349</guid><dc:creator><![CDATA[tobZel]]></dc:creator><pubDate>Fri, 24 Aug 2007 16:59:39 GMT</pubDate></item><item><title><![CDATA[Reply to list fenster on Fri, 24 Aug 2007 17:58:32 GMT]]></title><description><![CDATA[<p>Ich glaube bei dem Teil gab die &quot;Höhe&quot; nicht die Höhe des Controls sondern die aufgeklappte Größe an, die könnte evtl. zu klein sein <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=";D"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351372</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351372</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Fri, 24 Aug 2007 17:58:32 GMT</pubDate></item><item><title><![CDATA[Reply to list fenster on Fri, 24 Aug 2007 18:46:35 GMT]]></title><description><![CDATA[<pre><code>LANGUAGE LANG_NEUTRAL, 0
ENTITY DIALOG 0, 0, 195, 77
STYLE DS_FIXEDSYS |DS_SETFONT |WS_POPUP |WS_VISIBLE |WS_SYSMENU |WS_THICKFRAME |WS_MAXIMIZEBOX |WS_MINIMIZEBOX |WS_CAPTION 
CAPTION &quot;Entity erstellen&quot;
FONT 8, &quot;Ms Shell Dlg&quot;
BEGIN
  CONTROL &quot;Weiter&quot;,0,&quot;BUTTON&quot;,BS_DEFPUSHBUTTON |BS_VCENTER |BS_CENTER |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,75,46,55,17
  CONTROL &quot;&quot;,1,&quot;COMBOBOX&quot;,CBS_DROPDOWN |WS_CHILD |WS_TABSTOP |WS_VISIBLE ,47,13,106,52
END
</code></pre>
<p>habs jetzt geändert, aber leider klappt das ding nichtmal auf wenn ich auf den pfeil klicke. Ich kann da auch reinschreiben als wärs ne edit box oO<br />
Hoffe jemand weis noch was.</p>
<p>mfg tobZel</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351400</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351400</guid><dc:creator><![CDATA[tobZel]]></dc:creator><pubDate>Fri, 24 Aug 2007 18:46:35 GMT</pubDate></item><item><title><![CDATA[Reply to list fenster on Fri, 24 Aug 2007 18:56:08 GMT]]></title><description><![CDATA[<p><strong>LB</strong>_ADDSTRING -&gt; LISTBOX<br />
<strong>CB</strong>_ADDSTRING -&gt; COMBOBOX<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":-)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1351409</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1351409</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Fri, 24 Aug 2007 18:56:08 GMT</pubDate></item></channel></rss>