<?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[Menü nicht da]]></title><description><![CDATA[<p>Hallo ich bin gerade WinAPI am lernen mit dem Buch &quot;Windows Programmierung&quot; von Microsoft und dem Compiler Dev-C++ + Eclipse und habe ein Problem.<br />
Ich habe was aus dem Buch nachprogrammiert hier die Quellcodes:<br />
menudemo.cpp</p>
<pre><code>#include &lt;windows.h&gt;
#include &quot;resource.h&quot;

#define ID_TIMER 1

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

TCHAR szAppName[] = TEXT(&quot;Menu Demo&quot;);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
	HWND	 hwnd;
	MSG		 msg;
	WNDCLASS wndclass;

	wndclass.style			= CS_HREDRAW | CS_VREDRAW;
	wndclass.lpfnWndProc	= WndProc;
	wndclass.cbClsExtra		= 0;
	wndclass.cbWndExtra		= 0;
	wndclass.hInstance		= hInstance;
	wndclass.hIcon			= LoadIcon(NULL, IDI_APPLICATION);
	wndclass.hCursor		= LoadCursor(NULL, IDC_ARROW);
	wndclass.hbrBackground	= (HBRUSH) GetStockObject(WHITE_BRUSH);
	wndclass.lpszMenuName   = szAppName;
	wndclass.lpszClassName  = szAppName;

	if(!RegisterClass(&amp;wndclass)){
		MessageBox(NULL, TEXT(&quot;Programmfehler&quot;), szAppName, MB_ICONERROR);
		//MessageBox(NULL, TEXT(&quot;Programmfehler&quot;), WS_OVERLAPPEDWINDOWS, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hIntance, NULL);	
	}

	hwnd = CreateWindow(szAppName, TEXT(&quot;Programmfehler&quot;), WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hInstance, NULL);

	ShowWindow(hwnd, iCmdShow);
	UpdateWindow(hwnd);

	while(GetMessage(&amp;msg, NULL, 0, 0)){
		TranslateMessage(&amp;msg);
		DispatchMessage(&amp;msg);
	}

	return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam){
	static int idColor[5] = {WHITE_BRUSH, LTGRAY_BRUSH, GRAY_BRUSH, DKGRAY_BRUSH};
	static int iSelection = IDM_BKGND_WHITE;

	HMENU	hMenu;
	hMenu = GetMenu(hwnd);

	switch(message){
		case WM_COMMAND:
			switch(LOWORD(wParam)){
				case IDM_FILE_NEW:
				case IDM_FILE_OPEN:
				case IDM_FILE_SAVE:
				case IDM_FILE_SAVE_AS:
					MessageBeep(0);
					return 0;

				case IDM_APP_EXIT:
					SendMessage(hwnd, WM_CLOSE, 0, 0);
					return 0;

				case IDM_EDIT_UNDO:
				case IDM_EDIT_CUT:
				case IDM_EDIT_COPY:
				case IDM_EDIT_PAST:
				case IDM_EDIT_CLEAR:
					MessageBeep(0);
					return 0;

				case IDM_BKGND_WHITE:
				case IDM_BKGND_LTGRAY:
				case IDM_BKGND_GRAY:
				case IDM_BKGND_DKGRAY:
				case IDM_BKGND_BLACK:
					CheckMenuItem(hMenu, iSelection, MF_UNCHECKED);
					iSelection = LOWORD(wParam);
					CheckMenuItem(hMenu, iSelection, MF_CHECKED);

					SetClassLong(hwnd, GCL_HBRBACKGROUND, (LONG) GetStockObject(idColor[LOWORD(wParam) - IDM_BKGND_WHITE]));

					InvalidateRect(hwnd, NULL, TRUE);
					return 0;

				case IDM_TIMER_START:
					if(SetTimer(hwnd, ID_TIMER, 1000, NULL)){
						EnableMenuItem(hMenu, IDM_TIMER_START, MF_GRAYED);
						EnableMenuItem(hMenu, IDM_TIMER_STOP, MF_ENABLED);
					}
					return 0;

				case IDM_TIMER_STOP:
					KillTimer(hwnd, ID_TIMER);
					EnableMenuItem(hMenu, IDM_TIMER_START, MF_ENABLED);
					EnableMenuItem(hMenu, IDM_TIMER_STOP, MF_GRAYED);
					return 0;

				case IDM_APP_HELP:
					MessageBox(hwnd, TEXT(&quot;Hilfestellung noch nicht implentiert.&quot;), szAppName, MB_ICONEXCLAMATION | MB_OK);
					return 0;

				case IDM_APP_ABOUT:
					MessageBox(hwnd, TEXT(&quot;Hilfestellung noch nicht implentiert.&quot;), szAppName, MB_ICONINFORMATION | MB_OK);
					return 0;
			}
			break;

		case WM_TIMER:
			MessageBeep(0);
			return 0;

		case WM_DESTROY:
			PostQuitMessage(0);
			return 0;
	}

	return DefWindowProc(hwnd, message, wParam, lParam);
}
</code></pre>
<p>resource.h</p>
<pre><code>#define IDM_FILE_NEW					40001
#define IDM_FILE_OPEN					40002
#define IDM_FILE_SAVE					40003
#define IDM_FILE_SAVE_AS				40004
#define IDM_APP_EXIT					40005
#define IDM_EDIT_UNDO					40006
#define IDM_EDIT_CUT					40007
#define IDM_EDIT_COPY					40008
#define IDM_EDIT_PAST					40009
#define IDM_EDIT_CLEAR					40010
#define IDM_BKGND_WHITE					40011
#define IDM_BKGND_LTGRAY				40012
#define IDM_BKGND_GRAY					40013
#define IDM_BKGND_DKGRAY				40014
#define IDM_BKGND_BLACK					40015
#define IDM_TIMER_START					40016
#define IDM_TIMER_STOP					40017
#define IDM_APP_HELP					40018
#define IDM_APP_ABOUT					40019
</code></pre>
<p>menudemo.rc</p>
<pre><code>#include &quot;resource.h&quot;
#include &quot;afxres.h&quot;

MENUDEMO MENU DISCARDABLE
BEGIN
	POPUP &quot;&amp;Datei&quot;
	BEGIN
		MENUITEM &quot;&amp;Neu&quot;,				IDM_FILE_NEW
		MENUITEM &quot;&amp;Öffnen&quot;,				IDM_FILE_OPEN
		MENUITEM &quot;&amp;Speichern&quot;,			IDM_FILE_SAVE
		MENUITEM &quot;Speichern &amp;unter&quot;,	IDM_FILE_SAVE_AS
		MEMUITEM SEPERATOR
		MENUITEM &quot;B&amp;enden&quot;,				IDM_APP_EXIT
	END
	POPUP &quot;&amp;Bearbeiten&quot;
	BEGIN
		MENUITEM &quot;&amp;Widerrufen&quot;,			IDM_EDIT_UNDO
		MENUITEM SEPERATOR
		MENUITEM &quot;A&amp;usschneiden&quot;,		IDM_EDIT_CUT
		MENUITEM &quot;&amp;Kopieren&quot;,			IDM_EDIT_COPY
		MENUITEM &quot;E&amp;infügen&quot;,			IDM_EDIT_PAST
		MENUITEM &quot;&amp;Löschen&quot;,			IDM_EDIT_CLEAR
	END
	POPUP &quot;&amp;Hintergrund&quot;,
	BEGIN
		MENUITEM &quot;&amp;Weiß&quot;,				IDM_BKGND_WHITE, CHECHED
		MENUITEM &quot;&amp;Hellgrau&quot;,			IDM_BKGND_LTGRAY
		MENUITEM &quot;&amp;Grau&quot;				IDM_BKGND_GRAY
		MENUITEM &quot;&amp;Dunkelgrau&quot;			IDM_BKGND_DKGRAY
		MENUITEM &quot;&amp;Schwarz&quot;				IDM_BKGND_BLACK
	END
	POPUP &quot;&amp;Timer&quot;
	BEGIN
		MENUITEM &quot;&amp;Start&quot;				IDM_TIMER_START
		MENUITEM &quot;&amp;Stop&quot;				IDM_TIMER_STOP, GRAYED
	END
	POPUP &quot;&amp;Hilfe&quot;
	BEGIN
		MENUITEM &quot;&amp;Hilfe&quot;				IDM_APP_HELP
		MENUITEM &quot;I&amp;nfo&quot;				IDM_APP_ABOUT
	END
END
</code></pre>
<p>Wenn ich das ganze Compilieren und ausführe habe ich zwar ein Windowsfenster aber kein Menü.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/149049/menü-nicht-da</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Jul 2026 00:39:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/149049.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 01 Jun 2006 19:54:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Menü nicht da on Thu, 01 Jun 2006 19:54:11 GMT]]></title><description><![CDATA[<p>Hallo ich bin gerade WinAPI am lernen mit dem Buch &quot;Windows Programmierung&quot; von Microsoft und dem Compiler Dev-C++ + Eclipse und habe ein Problem.<br />
Ich habe was aus dem Buch nachprogrammiert hier die Quellcodes:<br />
menudemo.cpp</p>
<pre><code>#include &lt;windows.h&gt;
#include &quot;resource.h&quot;

#define ID_TIMER 1

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

TCHAR szAppName[] = TEXT(&quot;Menu Demo&quot;);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
	HWND	 hwnd;
	MSG		 msg;
	WNDCLASS wndclass;

	wndclass.style			= CS_HREDRAW | CS_VREDRAW;
	wndclass.lpfnWndProc	= WndProc;
	wndclass.cbClsExtra		= 0;
	wndclass.cbWndExtra		= 0;
	wndclass.hInstance		= hInstance;
	wndclass.hIcon			= LoadIcon(NULL, IDI_APPLICATION);
	wndclass.hCursor		= LoadCursor(NULL, IDC_ARROW);
	wndclass.hbrBackground	= (HBRUSH) GetStockObject(WHITE_BRUSH);
	wndclass.lpszMenuName   = szAppName;
	wndclass.lpszClassName  = szAppName;

	if(!RegisterClass(&amp;wndclass)){
		MessageBox(NULL, TEXT(&quot;Programmfehler&quot;), szAppName, MB_ICONERROR);
		//MessageBox(NULL, TEXT(&quot;Programmfehler&quot;), WS_OVERLAPPEDWINDOWS, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hIntance, NULL);	
	}

	hwnd = CreateWindow(szAppName, TEXT(&quot;Programmfehler&quot;), WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hInstance, NULL);

	ShowWindow(hwnd, iCmdShow);
	UpdateWindow(hwnd);

	while(GetMessage(&amp;msg, NULL, 0, 0)){
		TranslateMessage(&amp;msg);
		DispatchMessage(&amp;msg);
	}

	return msg.wParam;
}

LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam){
	static int idColor[5] = {WHITE_BRUSH, LTGRAY_BRUSH, GRAY_BRUSH, DKGRAY_BRUSH};
	static int iSelection = IDM_BKGND_WHITE;

	HMENU	hMenu;
	hMenu = GetMenu(hwnd);

	switch(message){
		case WM_COMMAND:
			switch(LOWORD(wParam)){
				case IDM_FILE_NEW:
				case IDM_FILE_OPEN:
				case IDM_FILE_SAVE:
				case IDM_FILE_SAVE_AS:
					MessageBeep(0);
					return 0;

				case IDM_APP_EXIT:
					SendMessage(hwnd, WM_CLOSE, 0, 0);
					return 0;

				case IDM_EDIT_UNDO:
				case IDM_EDIT_CUT:
				case IDM_EDIT_COPY:
				case IDM_EDIT_PAST:
				case IDM_EDIT_CLEAR:
					MessageBeep(0);
					return 0;

				case IDM_BKGND_WHITE:
				case IDM_BKGND_LTGRAY:
				case IDM_BKGND_GRAY:
				case IDM_BKGND_DKGRAY:
				case IDM_BKGND_BLACK:
					CheckMenuItem(hMenu, iSelection, MF_UNCHECKED);
					iSelection = LOWORD(wParam);
					CheckMenuItem(hMenu, iSelection, MF_CHECKED);

					SetClassLong(hwnd, GCL_HBRBACKGROUND, (LONG) GetStockObject(idColor[LOWORD(wParam) - IDM_BKGND_WHITE]));

					InvalidateRect(hwnd, NULL, TRUE);
					return 0;

				case IDM_TIMER_START:
					if(SetTimer(hwnd, ID_TIMER, 1000, NULL)){
						EnableMenuItem(hMenu, IDM_TIMER_START, MF_GRAYED);
						EnableMenuItem(hMenu, IDM_TIMER_STOP, MF_ENABLED);
					}
					return 0;

				case IDM_TIMER_STOP:
					KillTimer(hwnd, ID_TIMER);
					EnableMenuItem(hMenu, IDM_TIMER_START, MF_ENABLED);
					EnableMenuItem(hMenu, IDM_TIMER_STOP, MF_GRAYED);
					return 0;

				case IDM_APP_HELP:
					MessageBox(hwnd, TEXT(&quot;Hilfestellung noch nicht implentiert.&quot;), szAppName, MB_ICONEXCLAMATION | MB_OK);
					return 0;

				case IDM_APP_ABOUT:
					MessageBox(hwnd, TEXT(&quot;Hilfestellung noch nicht implentiert.&quot;), szAppName, MB_ICONINFORMATION | MB_OK);
					return 0;
			}
			break;

		case WM_TIMER:
			MessageBeep(0);
			return 0;

		case WM_DESTROY:
			PostQuitMessage(0);
			return 0;
	}

	return DefWindowProc(hwnd, message, wParam, lParam);
}
</code></pre>
<p>resource.h</p>
<pre><code>#define IDM_FILE_NEW					40001
#define IDM_FILE_OPEN					40002
#define IDM_FILE_SAVE					40003
#define IDM_FILE_SAVE_AS				40004
#define IDM_APP_EXIT					40005
#define IDM_EDIT_UNDO					40006
#define IDM_EDIT_CUT					40007
#define IDM_EDIT_COPY					40008
#define IDM_EDIT_PAST					40009
#define IDM_EDIT_CLEAR					40010
#define IDM_BKGND_WHITE					40011
#define IDM_BKGND_LTGRAY				40012
#define IDM_BKGND_GRAY					40013
#define IDM_BKGND_DKGRAY				40014
#define IDM_BKGND_BLACK					40015
#define IDM_TIMER_START					40016
#define IDM_TIMER_STOP					40017
#define IDM_APP_HELP					40018
#define IDM_APP_ABOUT					40019
</code></pre>
<p>menudemo.rc</p>
<pre><code>#include &quot;resource.h&quot;
#include &quot;afxres.h&quot;

MENUDEMO MENU DISCARDABLE
BEGIN
	POPUP &quot;&amp;Datei&quot;
	BEGIN
		MENUITEM &quot;&amp;Neu&quot;,				IDM_FILE_NEW
		MENUITEM &quot;&amp;Öffnen&quot;,				IDM_FILE_OPEN
		MENUITEM &quot;&amp;Speichern&quot;,			IDM_FILE_SAVE
		MENUITEM &quot;Speichern &amp;unter&quot;,	IDM_FILE_SAVE_AS
		MEMUITEM SEPERATOR
		MENUITEM &quot;B&amp;enden&quot;,				IDM_APP_EXIT
	END
	POPUP &quot;&amp;Bearbeiten&quot;
	BEGIN
		MENUITEM &quot;&amp;Widerrufen&quot;,			IDM_EDIT_UNDO
		MENUITEM SEPERATOR
		MENUITEM &quot;A&amp;usschneiden&quot;,		IDM_EDIT_CUT
		MENUITEM &quot;&amp;Kopieren&quot;,			IDM_EDIT_COPY
		MENUITEM &quot;E&amp;infügen&quot;,			IDM_EDIT_PAST
		MENUITEM &quot;&amp;Löschen&quot;,			IDM_EDIT_CLEAR
	END
	POPUP &quot;&amp;Hintergrund&quot;,
	BEGIN
		MENUITEM &quot;&amp;Weiß&quot;,				IDM_BKGND_WHITE, CHECHED
		MENUITEM &quot;&amp;Hellgrau&quot;,			IDM_BKGND_LTGRAY
		MENUITEM &quot;&amp;Grau&quot;				IDM_BKGND_GRAY
		MENUITEM &quot;&amp;Dunkelgrau&quot;			IDM_BKGND_DKGRAY
		MENUITEM &quot;&amp;Schwarz&quot;				IDM_BKGND_BLACK
	END
	POPUP &quot;&amp;Timer&quot;
	BEGIN
		MENUITEM &quot;&amp;Start&quot;				IDM_TIMER_START
		MENUITEM &quot;&amp;Stop&quot;				IDM_TIMER_STOP, GRAYED
	END
	POPUP &quot;&amp;Hilfe&quot;
	BEGIN
		MENUITEM &quot;&amp;Hilfe&quot;				IDM_APP_HELP
		MENUITEM &quot;I&amp;nfo&quot;				IDM_APP_ABOUT
	END
END
</code></pre>
<p>Wenn ich das ganze Compilieren und ausführe habe ich zwar ein Windowsfenster aber kein Menü.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1069776</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1069776</guid><dc:creator><![CDATA[lord_fritte]]></dc:creator><pubDate>Thu, 01 Jun 2006 19:54:11 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Thu, 01 Jun 2006 22:00:35 GMT]]></title><description><![CDATA[<p>hi, Also:<br />
in deinem Code fehlt...</p>
<p>_____________________________________________________________________________<br />
1.:</p>
<pre><code class="language-cpp">wndclass.lpszMenuName   = szAppName;
</code></pre>
<p>wird zu:</p>
<pre><code class="language-cpp">wndclass.lpszMenuName   = MAKEINTRESOURCE(MENUDEMO);
</code></pre>
<p>_____________________________________________________________________________<br />
2.: (nicht unbedingt nötig, aber sinnvoll!)</p>
<pre><code class="language-cpp">HMENU hMenu;
hMenu = GetMenu(hwnd);
</code></pre>
<p>wird zu:</p>
<pre><code class="language-cpp">static HMENU hMenu;
// der Init unter WM_CREATE:
case WM_CREATE:
    // ...
    hMenu = GetMenu(hwnd);
    // ...
    break;
</code></pre>
<p>_____________________________________________________________________________</p>
<p>MfG CodeFinder</p>
<p>PS: Bin mir nicht ganz sicher, aber in MVC++ muss du alles dem Projekt hinzufügen!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1069823</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1069823</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Thu, 01 Jun 2006 22:00:35 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 12:50:48 GMT]]></title><description><![CDATA[<p>So gehts auch:</p>
<pre><code class="language-cpp">HMENU hMenu;
hMenu = MAKEINTRESOURCE (MENUDEMO);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1070087</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070087</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Fri, 02 Jun 2006 12:50:48 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 13:21:02 GMT]]></title><description><![CDATA[<p>Also mit anderen Worten im Buch steht mist? jetzt verstehe ich warum windows so ka.. läuft <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>Das Menü ist aber trozdem nicht da</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070091</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070091</guid><dc:creator><![CDATA[lord_fritte]]></dc:creator><pubDate>Fri, 02 Jun 2006 13:21:02 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 14:08:49 GMT]]></title><description><![CDATA[<p>Welches Buch hast Du denn?</p>
<p>Hier mal ein Tutorial zum Umgang mit Menüs:</p>
<p><a href="http://pronix.linuxdelta.de/C/win32/win32_4.shtml" rel="nofollow">http://pronix.linuxdelta.de/C/win32/win32_4.shtml</a></p>
<p>Aber von dem linuxdelta nicht verwirren lassen.. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070131</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070131</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Fri, 02 Jun 2006 14:08:49 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 14:53:10 GMT]]></title><description><![CDATA[<p>Ich habe denn Code übernommen aber es gibt kein Menü</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070150</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070150</guid><dc:creator><![CDATA[lord_fritte]]></dc:creator><pubDate>Fri, 02 Jun 2006 14:53:10 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 16:16:10 GMT]]></title><description><![CDATA[<p>Microsoft Visual C++ =&gt; Neues Projekt =&gt; Win32 Anwendung =&gt; Standard Einstellungen lassen!</p>
<p>Damit erstellt der die eine nette bsp. Anweundung, <strong>mit</strong> Menü... könnt ihr euch mal im selber Fehlerfinden trainieren...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070183</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070183</guid><dc:creator><![CDATA[*D*Evil]]></dc:creator><pubDate>Fri, 02 Jun 2006 16:16:10 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 17:43:22 GMT]]></title><description><![CDATA[<p>Ich kann mit Microsoft Visual C++ aber nur Konsolenanwendungen erstellen</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070231</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070231</guid><dc:creator><![CDATA[lord_fritte]]></dc:creator><pubDate>Fri, 02 Jun 2006 17:43:22 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 17:52:50 GMT]]></title><description><![CDATA[<p>lord_fritte schrieb:</p>
<blockquote>
<p>Ich kann mit Microsoft Visual C++ aber nur Konsolenanwendungen erstellen</p>
</blockquote>
<p>oho, wieso ?</p>
<p>MfG CodeFinder</p>
<p>PS: Hassu meine Tipps mal probiert ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070237</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070237</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Fri, 02 Jun 2006 17:52:50 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 18:03:28 GMT]]></title><description><![CDATA[<p>CodeFinder schrieb:</p>
<blockquote>
<p>lord_fritte schrieb:</p>
<blockquote>
<p>Ich kann mit Microsoft Visual C++ aber nur Konsolenanwendungen erstellen</p>
</blockquote>
<p>oho, wieso ?</p>
<p>MfG CodeFinder</p>
<p>PS: Hassu meine Tipps mal probiert ?</p>
</blockquote>
<p>Ja geht alles nicht</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070248</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070248</guid><dc:creator><![CDATA[lord_fritte]]></dc:creator><pubDate>Fri, 02 Jun 2006 18:03:28 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Fri, 02 Jun 2006 18:06:11 GMT]]></title><description><![CDATA[<p>Seid wann kann jemand nur Konsolen Anwendungen erstellen?! Das ist jawohl stuss schlecht hin...</p>
<p>Welche Version(VC++) ?!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070251</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070251</guid><dc:creator><![CDATA[*D*Evil]]></dc:creator><pubDate>Fri, 02 Jun 2006 18:06:11 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Sat, 03 Jun 2006 15:53:09 GMT]]></title><description><![CDATA[<p>Dier <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-143003.html" rel="nofollow">hier</a> Ich hatte vergessen PSDK zu installieren <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>
]]></description><link>https://www.c-plusplus.net/forum/post/1070771</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070771</guid><dc:creator><![CDATA[lord_fritte]]></dc:creator><pubDate>Sat, 03 Jun 2006 15:53:09 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Sat, 03 Jun 2006 16:56:40 GMT]]></title><description><![CDATA[<p>ζσζ</p>
<p>hatte mich schon gewundert</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1070806</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070806</guid><dc:creator><![CDATA[achso...]]></dc:creator><pubDate>Sat, 03 Jun 2006 16:56:40 GMT</pubDate></item><item><title><![CDATA[Reply to Menü nicht da on Sat, 03 Jun 2006 19:26:38 GMT]]></title><description><![CDATA[<p>Wenn ich jetzt aber eine Widows Anwendung neu erstelle und das Projekt so lasse wie es ist und das Compiliere bekomm ich einen Fehler:</p>
<pre><code>Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'winwlm.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macwin32.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macwin32.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macwin32.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macwin32.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macwin32.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macwin32.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'rpcerr.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'rpcmac.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macname1.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macpub.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macapi.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Test2 : warning PRJ0041 : Fehlende Abhängigkeit 'macname2.h' für Datei 'Test2.rc' kann nicht gefunden werden. Das Projekt kann zwar erstellt werden, ist aber erst dann aktuell, wenn die Datei gefunden wurde.

Die temporäre Datei &quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\RSP00000139001436.rsp&quot; wird erstellt. Inhalt:
[
/Od /D &quot;WIN32&quot; /D &quot;_DEBUG&quot; /D &quot;_WINDOWS&quot; /D &quot;_UNICODE&quot; /D &quot;UNICODE&quot; /Gm /EHsc /RTC1 /MDd /Yu&quot;stdafx.h&quot; /Fp&quot;Debug\Test2.pch&quot; /Fo&quot;Debug\\&quot; /Fd&quot;Debug\vc80.pdb&quot; /W3 /c /Wp64 /ZI /TP &quot;.\Test2.cpp&quot;
]Erstellen der Befehlszeile &quot;cl.exe @&quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\RSP00000139001436.rsp&quot; /nologo /errorReport:prompt&quot;Die temporäre Datei &quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\RSP00000239001436.rsp&quot; wird erstellt. Inhalt:
[
/Od /D &quot;WIN32&quot; /D &quot;_DEBUG&quot; /D &quot;_WINDOWS&quot; /D &quot;_UNICODE&quot; /D &quot;UNICODE&quot; /Gm /EHsc /RTC1 /MDd /Yc&quot;stdafx.h&quot; /Fp&quot;Debug\Test2.pch&quot; /Fo&quot;Debug\\&quot; /Fd&quot;Debug\vc80.pdb&quot; /W3 /c /Wp64 /ZI /TP &quot;.\stdafx.cpp&quot;
]Erstellen der Befehlszeile &quot;cl.exe @&quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\RSP00000239001436.rsp&quot; /nologo /errorReport:prompt&quot;Erstellen der Befehlszeile &quot;rc.exe /d &quot;_UNICODE&quot; /d &quot;UNICODE&quot; /fo&quot;Debug/Test2.res&quot; &quot;.\Test2.rc&quot;&quot;Die temporäre Datei &quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\TMP00000339001436.tmp&quot; wird erstellt. Inhalt:
[
1 /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ 24 /* RT_MANIFEST */ &quot;.\\Debug\\Test2.exe.embed.manifest&quot;
]Erstellen der Befehlszeile &quot;rc.exe /fo&quot;.\Debug\Test2.exe.embed.manifest.res&quot; &quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\TMP00000339001436.tmp&quot;&quot;
Die temporäre Datei &quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\RSP00000439001436.rsp&quot; wird erstellt. Inhalt:
[
/OUT:&quot;C:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Debug\Test2.exe&quot; /INCREMENTAL /MANIFEST /MANIFESTFILE:&quot;Debug\Test2.exe.intermediate.manifest&quot; /DEBUG /PDB:&quot;c:\dokumente und einstellungen\tobias\eigene dateien\visual studio 2005\projects\test2\debug\Test2.pdb&quot; /SUBSYSTEM:WINDOWS /MACHINE:X86 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib

&quot;.\debug\stdafx.obj&quot;

&quot;.\debug\Test2.obj&quot;

&quot;.\debug\Test2.res&quot;

&quot;.\Debug\Test2.exe.embed.manifest.res&quot;
]Erstellen der Befehlszeile &quot;link.exe @&quot;c:\Dokumente und Einstellungen\Tobias\Eigene Dateien\Visual Studio 2005\Projects\Test2\Test2\Debug\RSP00000439001436.rsp&quot; /NOLOGO /ERRORREPORT:PROMPT&quot;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1070874</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1070874</guid><dc:creator><![CDATA[lord_fritte]]></dc:creator><pubDate>Sat, 03 Jun 2006 19:26:38 GMT</pubDate></item></channel></rss>