<?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[konsolenanwendung in windows anwendung umwandeln?]]></title><description><![CDATA[<p>da ich c++ grad erst anfange möchte ich gerne eine von mir geschriebene consolenanwendung in eine windows anwendung umwandeln, wobei ich möglich viel selber schreiben will! hab MS VC++. Könnt ihr mir n paar tips geben wie ich sowas mache? die anwendung is relativ einfach, ein telefonbuch was Vectoren benutzt und die daten in dateien speichert sowie ausliest.</p>
<p>dankee</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/77226/konsolenanwendung-in-windows-anwendung-umwandeln</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Apr 2026 18:18:38 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/77226.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 18 Jun 2004 19:30:31 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:30:31 GMT]]></title><description><![CDATA[<p>da ich c++ grad erst anfange möchte ich gerne eine von mir geschriebene consolenanwendung in eine windows anwendung umwandeln, wobei ich möglich viel selber schreiben will! hab MS VC++. Könnt ihr mir n paar tips geben wie ich sowas mache? die anwendung is relativ einfach, ein telefonbuch was Vectoren benutzt und die daten in dateien speichert sowie ausliest.</p>
<p>dankee</p>
]]></description><link>https://www.c-plusplus.net/forum/post/543419</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543419</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:30:31 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:43:17 GMT]]></title><description><![CDATA[<p>Hallo,<br />
willst du die MFC verwenden? Oder Windows-Forms? Oder vielleicht doch pure Win-API?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/543425</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543425</guid><dc:creator><![CDATA[HumeSikkins]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:43:17 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:48:41 GMT]]></title><description><![CDATA[<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /> <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="😕"
    /><br />
blub...was ist denn am praktischsten? sry dass ich so unwissend daherkomme, aber ich hab mir mal sone win32 hallo welt anwendung angeguckt, aber sowas:</p>
<pre><code class="language-cpp">LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
	int wmId, wmEvent;
	PAINTSTRUCT ps;
	HDC hdc;
	TCHAR szHello[MAX_LOADSTRING];
	LoadString(hInst, IDS_HELLO, szHello, MAX_LOADSTRING);

	switch( message ) 
	{
		case WM_COMMAND:
			wmId    = LOWORD(wParam); 
			wmEvent = HIWORD(wParam); 
			// Menüauswahlen analysieren:
			switch( wmId ) 
			{
				case IDM_\1:
				   DialogBox(hInst, (LPCTSTR)IDD_ABOUTBOX, hWnd, (DLGPROC)About);
				   break;
				case IDM_EXIT:
				   DestroyWindow( hWnd );
				   break;
				default:
				   return DefWindowProc( hWnd, message, wParam, lParam );
			}
			break;
		case WM_PAINT:
			hdc = BeginPaint (hWnd, &amp;ps);
			// ZU ERLEDIGEN: Hier beliebigen Code zum Zeichnen hinzufügen...
			RECT rt;
			GetClientRect( hWnd, &amp;rt );
			DrawText( hdc, szHello, strlen(szHello), &amp;rt, DT_CENTER );
			EndPaint( hWnd, &amp;ps );
			break;
		case WM_DESTROY:
			PostQuitMessage( 0 );
			break;
		default:
			return DefWindowProc( hWnd, message, wParam, lParam );
   }
   return 0;
}
</code></pre>
<p>sagt einem nicht viel wenn man vorher nur mit consoleanwendungen rumgespielt hat <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/543427</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543427</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:48:41 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:54:56 GMT]]></title><description><![CDATA[<p>ich denkmal er will pure API,<br />
da er gesagt hat alles selber schreiben.</p>
<p>Naja, am besten mal bei google nach Tutorials suchen für einfache WinAPI anwendungen und dann mal einsteigen.</p>
<p>Foren mitlesen (WinAPI Forum) hilft auch für weiterführende Bildung etc. ...<br />
Eventl. steht auch was in der WinAPI Faq drin,<br />
aber [url=http://www.google.de]Google[/gurl] is schonmal ein guter Startpunkt</p>
<p>edit 1: hier mal ne gute Tutorial Seite: <a href="http://www.win-api.de/" rel="nofollow">http://www.win-api.de/</a></p>
<p>pseudo-edit2: dein Code hat hier leider nichts verloren, imo gehört das ins WinAPI Forum</p>
]]></description><link>https://www.c-plusplus.net/forum/post/543429</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543429</guid><dc:creator><![CDATA[k1ro]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:54:56 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:52:35 GMT]]></title><description><![CDATA[<p>also sollte MFC besser für anfänger sein fang ich glaub ich lieber damit an...was könnt ihr mir denn emfehlen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/543433</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543433</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:52:35 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:56:38 GMT]]></title><description><![CDATA[<p>Hallo,<br />
ich verschieb dich erstmal nach MFC. Zur Not kannst du immer noch auf WinAPI umsteigen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/543437</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543437</guid><dc:creator><![CDATA[HumeSikkins]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:56:38 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:56:54 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile.php?mode=viewprofile&amp;u=403" rel="nofollow">HumeSikkins</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=15" rel="nofollow">C++</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum.php?f=1" rel="nofollow">MFC mit dem Visual C++</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39405" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/543438</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543438</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:56:54 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 19:58:51 GMT]]></title><description><![CDATA[<p>Was heißt schon besser für Anfänger,<br />
MFC is halt mehr &quot;Klicki-Bunti&quot; imo ^^ .</p>
<p>Also ich würd dir Vorschlagen WinAPI richtig zu lernen,<br />
weil des was du mit WinAPI pur kannst, kannst du auch bei MFC programmen verwerten, umgekehrt geht das nicht,<br />
zudem baut es auch ein Verständniss für das ganze auf.</p>
<p>Solang du die Zeit hast, machs besser ganz.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/543441</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543441</guid><dc:creator><![CDATA[k1ro]]></dc:creator><pubDate>Fri, 18 Jun 2004 19:58:51 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 20:01:55 GMT]]></title><description><![CDATA[<p><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="🙂"
    /> zeit habbich...sommerferien <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="😉"
    /> ich hab jetzt grad n MFC tut gefunden, aber ich hab mir schon gedacht, dass MFC eher sowas wie Delphi ist ^^. Hast du vielleicht n schönes windows API tut für mich? (also von aaanfang an!) ich hab bei gugel auf die schnelle nix gscheites gefunden..<br />
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>
]]></description><link>https://www.c-plusplus.net/forum/post/543445</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543445</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Fri, 18 Jun 2004 20:01:55 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 20:32:26 GMT]]></title><description><![CDATA[<p>Also, da wollen wir mal, wenn schon jemand sehr viel Zeit hat:</p>
<p>C++:<br />
<a href="http://www.cpp-tutor.de/" rel="nofollow">http://www.cpp-tutor.de/</a></p>
<p>WinAPI:<br />
<a href="http://www.henkessoft.de/api1.htm" rel="nofollow">http://www.henkessoft.de/api1.htm</a><br />
<a href="http://www.henkessoft.de/WinAPI_7_GDI.htm" rel="nofollow">http://www.henkessoft.de/WinAPI_7_GDI.htm</a><br />
<a href="http://www.winprog.org/tutorial/" rel="nofollow">http://www.winprog.org/tutorial/</a><br />
<a href="http://www.win-api.de/" rel="nofollow">http://www.win-api.de/</a></p>
<p>MFC:<br />
<a href="http://www.henkessoft.de/mfc_einsteigerbuch_kapitel1.htm" rel="nofollow">http://www.henkessoft.de/mfc_einsteigerbuch_kapitel1.htm</a><br />
<a href="http://www.codeguru.com/Cpp/Cpp/cpp_mfc/tutorials/article.php/c4131" rel="nofollow">http://www.codeguru.com/Cpp/Cpp/cpp_mfc/tutorials/article.php/c4131</a><br />
<a href="http://devcentral.iftech.com/articles/MFC/default.php" rel="nofollow">http://devcentral.iftech.com/articles/MFC/default.php</a><br />
<a href="http://www.codeproject.com/dialog/dialogapptute.asp" rel="nofollow">http://www.codeproject.com/dialog/dialogapptute.asp</a><br />
<a href="http://www.codeproject.com/dialog/dialogapptute2.asp" rel="nofollow">http://www.codeproject.com/dialog/dialogapptute2.asp</a><br />
<a href="http://www.codeproject.com/" rel="nofollow">http://www.codeproject.com/</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/543463</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543463</guid><dc:creator><![CDATA[Erhard Henkes]]></dc:creator><pubDate>Fri, 18 Jun 2004 20:32:26 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 20:38:50 GMT]]></title><description><![CDATA[<p>goil danke <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="😉"
    /> ich überweis euch dann n paar tausender wenn ich bill gates ablöse <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/543467</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543467</guid><dc:creator><![CDATA[pixartist]]></dc:creator><pubDate>Fri, 18 Jun 2004 20:38:50 GMT</pubDate></item><item><title><![CDATA[Reply to konsolenanwendung in windows anwendung umwandeln? on Fri, 18 Jun 2004 21:02:19 GMT]]></title><description><![CDATA[<p>Gern geschehen. Da musst Du aber auch ein eigenes &quot;operating system&quot; schreiben:<br />
<a href="http://www.ysgnet.com/art/toyos_1.html" rel="nofollow">http://www.ysgnet.com/art/toyos_1.html</a><br />
<a href="http://www.ysgnet.com/art/toyos_2.html" rel="nofollow">http://www.ysgnet.com/art/toyos_2.html</a><br />
<a href="http://www.linuxgazette.com/issue82/raghu.html" rel="nofollow">http://www.linuxgazette.com/issue82/raghu.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/543477</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/543477</guid><dc:creator><![CDATA[Erhard Henkes]]></dc:creator><pubDate>Fri, 18 Jun 2004 21:02:19 GMT</pubDate></item></channel></rss>