<?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[Column zu einem Listview Window hinzufügen]]></title><description><![CDATA[<p>Hi Leute,</p>
<p>kann mir vielleicht mal jemand erklären wie man zu einem Listview Window ein Column hinzufügen kann, ich hab schon ne weile versucht es selbst hinzubekommen aber das ist ja sau kompliziert.<br />
Ich kenne das halt leider nur als &quot;ListIcon&quot; aus Basic aber in C ist das sehr viel komplizierter</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/194421/column-zu-einem-listview-window-hinzufügen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 30 Jun 2026 05:38:04 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/194421.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 06 Oct 2007 16:09:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sat, 06 Oct 2007 16:09:34 GMT]]></title><description><![CDATA[<p>Hi Leute,</p>
<p>kann mir vielleicht mal jemand erklären wie man zu einem Listview Window ein Column hinzufügen kann, ich hab schon ne weile versucht es selbst hinzubekommen aber das ist ja sau kompliziert.<br />
Ich kenne das halt leider nur als &quot;ListIcon&quot; aus Basic aber in C ist das sehr viel komplizierter</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379248</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379248</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Sat, 06 Oct 2007 16:09:34 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sat, 06 Oct 2007 16:55:19 GMT]]></title><description><![CDATA[<p>Zum einfügen:</p>
<pre><code class="language-cpp">bool InsertListViewColumn (HWND hListView, LPTSTR lpColumnName, int iWidth, DWORD dwStyle = NULL)
{
	static int iCol = 0;

	LV_COLUMN lvc;

	lvc.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM | dwStyle;
	lvc.fmt = LVCFMT_LEFT | dwStyle;
	lvc.cx = iWidth;
	lvc.pszText = lpColumnName;
	lvc.cchTextMax = 100;
	lvc.iSubItem = iCol;

	ListView_InsertColumn (hListView, iCol, &amp;lvc);

	++iCol;

	return true;
}
</code></pre>
<p>Zum ändern:</p>
<pre><code class="language-cpp">bool ChangeListViewColumn (HWND hListView, LPTSTR lpColumnName, int iWidth, int iColID, DWORD dwStyle = NULL)
{
	LV_COLUMN lvc;

	lvc.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM | dwStyle;
	lvc.fmt = LVCFMT_LEFT | dwStyle;
	lvc.cx = iWidth;
	lvc.pszText = lpColumnName;
	lvc.cchTextMax = 100;
	lvc.iSubItem = iColID;

	return ListView_SetColumn (hListView, iColID, &amp;lvc);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1379281</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379281</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Sat, 06 Oct 2007 16:55:19 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sat, 06 Oct 2007 17:10:09 GMT]]></title><description><![CDATA[<p>&quot;static&quot;-Variablen sind aber ganz böse!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379300</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379300</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Sat, 06 Oct 2007 17:10:09 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sat, 06 Oct 2007 17:35:06 GMT]]></title><description><![CDATA[<p>OK, zumindest weiß ich jetzt dass es eigentlich schon längst funktioniert hat, aber warum kann ich nicht den Title des Columns sehen?<br />
Ich sehe nur die Items und das die Selektion max. so breit ist die das Column, aber das Column selbst (Title ganz oben) kann ich nicht sehen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379324</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379324</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Sat, 06 Oct 2007 17:35:06 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sat, 06 Oct 2007 17:40:02 GMT]]></title><description><![CDATA[<p>hast du LVS_REPORT als ListView Style angegeben?</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/5675">@Jochen</a>: erklär mal, bzw schick nen Link wo du das bereits gemacht hast.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379327</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379327</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Sat, 06 Oct 2007 17:40:02 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sun, 07 Oct 2007 14:06:42 GMT]]></title><description><![CDATA[<p>Ja hab ich in Verwendung, aber es tut sich nichts neues <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="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379723</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379723</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Sun, 07 Oct 2007 14:06:42 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sun, 07 Oct 2007 14:16:18 GMT]]></title><description><![CDATA[<p>Du solltest die Nummer übergeben!<br />
Deine Funktion tut nur für *eine* ListView! Bei einer weiteren würde es schon schiefgehen...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379728</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379728</guid><dc:creator><![CDATA[Jochen Kalmbach]]></dc:creator><pubDate>Sun, 07 Oct 2007 14:16:18 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sun, 07 Oct 2007 14:29:09 GMT]]></title><description><![CDATA[<p>Achso! Naja, für mich reicht es ja, und wer das anders braucht, kann es anders machen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379742</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379742</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Sun, 07 Oct 2007 14:29:09 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sun, 07 Oct 2007 16:34:52 GMT]]></title><description><![CDATA[<p>Ich meine wie ich es hinbekomme damit es etwa wie folgt aussieht:</p>
<p><a href="http://www.bilder-space.de/upload/zXw2p2dBs9tSJmf.PNG" rel="nofollow">http://www.bilder-space.de/upload/zXw2p2dBs9tSJmf.PNG</a></p>
<p>Kann mir jemand sagen wie das geht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379843</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379843</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Sun, 07 Oct 2007 16:34:52 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Sun, 07 Oct 2007 16:45:20 GMT]]></title><description><![CDATA[<p>Also, so kann das in WM_CREATE aussehen:</p>
<pre><code class="language-cpp">case WM_CREATE:
	InitCommonControls();

	hFileView = CreateWindow (WC_LISTVIEW, &quot;&quot;, WS_CHILD | WS_VISIBLE | LVS_REPORT | LVS_SHOWSELALWAYS, 15, 70, 470, 299, hMain, (HMENU) LISTVIEW, g_hInst, NULL);
	InsertListViewColumn (hFileView, &quot;Datei&quot;, 210);
	InsertListViewColumn (hFileView, &quot;Größe&quot;, 70, 

	ListView_SetExtendedListViewStyle (hFileView, LVS_EX_FULLROWSELECT);
return 0;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1379851</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379851</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Sun, 07 Oct 2007 16:45:20 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 09:24:49 GMT]]></title><description><![CDATA[<p>@BitWax: Bei deinem CreateWindow ist noch nicht mal ein Name als Klasse angegeben worden, wie soll das funktionieren?<br />
Verwendet ihr VisualC++? Vielleicht könnt ihr euch dadurch Arbeitsschritte sparen?!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380300</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380300</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Mon, 08 Oct 2007 09:24:49 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 09:35:07 GMT]]></title><description><![CDATA[<p>WC_LISTVIEW ist der Name der Klasse!? Der 1. Parameter bezeichnet die Window-Klasse, so geht das!!!</p>
<p>EDIT: vllt. postest du einfach mal deinen Code, damit man nicht immer rumraten muss.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380309</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380309</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Mon, 08 Oct 2007 09:35:07 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 09:58:23 GMT]]></title><description><![CDATA[<p>AH! Danke! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /><br />
Ich hab die ganze Zeit nur &quot;LISTBOX&quot; als Klassennamen verwendet<br />
Super jetzt geht`s<br />
Vielen Dank an alle <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/1380327</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380327</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Mon, 08 Oct 2007 09:58:23 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 10:00:48 GMT]]></title><description><![CDATA[<p>... -.-</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380330</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380330</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Mon, 08 Oct 2007 10:00:48 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 10:58:04 GMT]]></title><description><![CDATA[<p>Ich bräuchte noch mal eine kleine Hilfe:<br />
wie erreicht man es ein Item hinzuzufügen und dies über mehrere Columns hinweg?</p>
<p>Beispiel:</p>
<pre><code>---------------------------
| Dateiname     | Größe   |
---------------------------
| Item 1        | 19 KB   |  &lt;-  &quot;Wie krieg ich den Text '19 KB' in`s 2. Column?&quot;
|               |         |
---------------------------
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1380382</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380382</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Mon, 08 Oct 2007 10:58:04 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 11:01:33 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">bool InsertListViewEntry (HWND hListView, LPTSTR lpEntryValue, int iRowID, int iColID)
{
	static int iEntry = 0;

	LV_ITEM lvi;

	lvi.mask = LVIF_TEXT;
    lvi.pszText = lpEntryValue;
	lvi.iItem = iRowID;
    lvi.iSubItem = iColID;

	if (iColID == 0)
		ListView_InsertItem (hListView, &amp;lvi);
	else
		ListView_SetItem (hListView, &amp;lvi);

	++iEntry;

	return true;
}
</code></pre>
<p>iRowID -&gt; Nummer des Columns (Zählung beginnt bei 0 <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/26a0.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--warning"
      title=":warning:"
      alt="⚠"
    /> )<br />
iColID -&gt; Nummer der Spalte</p>
<p>EDIT: Beispiel:</p>
<pre><code class="language-cpp">InsertListViewEntry (hListview, &quot;Datei.exe&quot;, 0, 0);
InsertListViewEntry (hListview, &quot;200KB&quot;, 1, 0);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1380384</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380384</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Mon, 08 Oct 2007 11:01:33 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 16:41:58 GMT]]></title><description><![CDATA[<p>danke für die Hilfe <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
<p>PS: war allerdings ein kleiner Denkfehler drin ^^</p>
<pre><code class="language-cpp">bool InsertListViewEntry (HWND hListView, LPTSTR lpEntryValue, int iRowID, int iColID)
{
    static int iEntry = 0;

    LV_ITEM lvi;

    lvi.mask = LVIF_TEXT;
    lvi.pszText = lpEntryValue;
    lvi.iItem = iColID;
    lvi.iSubItem = iRowID;

    if (iRowID == 0)
        ListView_InsertItem (hListView, &amp;lvi);
    else
        ListView_SetItem (hListView, &amp;lvi);

    ++iEntry;

    return true;
}
</code></pre>
<p><strong>iColID</strong> und <strong>iRowID</strong> waren an zwei Stellen vertauscht <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/1380649</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380649</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Mon, 08 Oct 2007 16:41:58 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Mon, 08 Oct 2007 17:03:52 GMT]]></title><description><![CDATA[<p>Waren sie nicht...ich war bloß eben zu blöd das oben richtig zu beschreiben. &quot;Col&quot; wie Column und eben Row. also sry für den Fehler in meiner Beschreibung</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380666</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380666</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Mon, 08 Oct 2007 17:03:52 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Tue, 09 Oct 2007 11:47:33 GMT]]></title><description><![CDATA[<p>Macht ja nix, danke trotzdem für das Beispiel <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
<p>Aber noch ne andere Frage:<br />
wenn ich als Window-Class keinen Text sondern z.B. <strong>WC_LISTVIEW</strong> oder <strong>TRACKBAR_CLASS</strong> verwende funktioniert der Teil mit <strong>WM_COMMAND</strong> nicht mit diesem Fenster?<br />
Wie kann ich denn sonst die Window-Events abfragen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381190</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381190</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Tue, 09 Oct 2007 11:47:33 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Tue, 09 Oct 2007 12:04:48 GMT]]></title><description><![CDATA[<p>über WM_NOTIFY. dafür musst du aber einmal die MSDN bemühen, da ich keine Lust habe nur Code zu posten <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/1381204</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381204</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Tue, 09 Oct 2007 12:04:48 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Wed, 10 Oct 2007 08:44:08 GMT]]></title><description><![CDATA[<p>Alles klar, hat auch ganz gut funktioniert, danke <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>
<p>Aber ich hätte noch zwei Fragen:<br />
1.)<br />
Ich hab die ganze &quot;Win32 Programmer<code>s Reference&quot; nach ListViews durchsucht und nichts gefunden um die CursorPosition zu verändern bzw. abzufragen. Ich dachte erst es geht auch mit LB\_GETCURSEL aber für LVM\_... gibt</code>s sowas nicht <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 />
2.)<br />
Gibt es sowas wie z.B. 'LVS_FULLROWSELECTION' um die gesammte Zeile anzucklicken?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381814</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381814</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Wed, 10 Oct 2007 08:44:08 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Wed, 10 Oct 2007 08:51:54 GMT]]></title><description><![CDATA[<p>zu 1.: meinst du welches Item gerade ausgewählt ist?</p>
<pre><code class="language-cpp">ListView_GetSelectionMark (hClientListView)
</code></pre>
<p>damit kannst du die ID des markierten Eintrages bekommen<br />
zu 2. ja:</p>
<pre><code class="language-cpp">ListView_SetExtendedListViewStyle (hFileView, LVS_EX_FULLROWSELECT);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1381823</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381823</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Wed, 10 Oct 2007 08:51:54 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Wed, 10 Oct 2007 09:01:05 GMT]]></title><description><![CDATA[<p>Bei beiden Funktionsaufrufen (<em>ListView_GetSelectionMark, ListView_SetExtendedListViewStyle</em>)<br />
kommt die Fehlermeldung: &quot;<strong>undefined reference to 'WinMain@16'</strong>&quot; <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="😞"
    /></p>
<p>In welcher DLL stehen denn diese Funktionen vielleicht kann ich diese einfach mit einbinden?!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381830</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381830</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Wed, 10 Oct 2007 09:01:05 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Wed, 10 Oct 2007 09:03:23 GMT]]></title><description><![CDATA[<p>hmmm...also da kann ich nicht helfen, das Problem hatte ich noch nie. Welchen Compiler/IDE benutzt du denn?</p>
<p>EDIT: hast du InitCommonControl aufgerufen? (müsstest du aber eigentlich, weil sonst würdest du ja kein ListView sehen)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381833</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381833</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Wed, 10 Oct 2007 09:03:23 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Wed, 10 Oct 2007 09:04:06 GMT]]></title><description><![CDATA[<p>GCC, also <em>GNU Compiler Collection</em> mit <em>DevC++</em> als IDE,<br />
warscheinlich verwendest du VisualC++ nicht war?<br />
Diese beiden Funktionen sind auch nicht in meiner <em>Win32 Programmer`s Reference</em> aufgeführt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381834</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381834</guid><dc:creator><![CDATA[LukasBanana]]></dc:creator><pubDate>Wed, 10 Oct 2007 09:04:06 GMT</pubDate></item><item><title><![CDATA[Reply to Column zu einem Listview Window hinzufügen on Wed, 10 Oct 2007 09:10:27 GMT]]></title><description><![CDATA[<p>Nein, ich benutze CodeBlocks. Allerdings nur zum coden. Zum compilieren benutze ich den Borland Compiler.<br />
Ich habe die Reference auch, ich kann aber nicht sagen, warum das dort nicht drin steht. Vllt. weiß ja jmd. ob es einen neue bzw. vollständigere Version davon gibt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1381841</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1381841</guid><dc:creator><![CDATA[Fake oder Echt]]></dc:creator><pubDate>Wed, 10 Oct 2007 09:10:27 GMT</pubDate></item></channel></rss>