Index: /trunk/MFCtooling/TestProg/TestProg.cpp
===================================================================
--- /trunk/MFCtooling/TestProg/TestProg.cpp	(revision 359)
+++ /trunk/MFCtooling/TestProg/TestProg.cpp	(revision 360)
@@ -3,4 +3,5 @@
 
 #include "stdafx.h"
+#include <iostream>
 #include "TestProg.h"
 #include "MainFrm.h"
@@ -222,5 +223,9 @@
 
 	DDX_Control(pDX, IDC_LIST1, listbox_test);
-	for(int i=0; i<10; i++) listbox_test.AddString(L"Testeintrag");
+	for(int i=0; i<10; i++) {
+		wchar_t* entry = new wchar_t[8];
+		wsprintf(entry, L"Entry %i", i);
+		listbox_test.AddString(entry);
+	}
 
 	DDX_Control(pDX, IDC_TAB1, tabControl_test);
