<?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[Eine einfache windows-meldung ausgeben (OK)]]></title><description><![CDATA[<p>Hallo,</p>
<p>Ich bin ein kompletter Neuling in der Programmiersprache C++,</p>
<p>ich möchte nun einfach nur eine Windows-Nachricht mit einem Text ausgeben, darunter die Schaltfläche 'ok' also eine typische windows-meldung...</p>
<p>Ich ahbe auch mal herrn google gefragt, doch google hatte auch keinen KOmplettcode für mich <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f622.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--crying_face"
      title=";("
      alt="😢"
    /></p>
<p>Ich weiß ja nocht nichtmla, was ich am Anfang includen muss etc...</p>
<p>Vielen vielen Dank im Vorraus...</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/202011/eine-einfache-windows-meldung-ausgeben-ok</link><generator>RSS for Node</generator><lastBuildDate>Mon, 27 Apr 2026 22:36:10 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/202011.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 06 Jan 2008 16:29:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Eine einfache windows-meldung ausgeben (OK) on Sun, 06 Jan 2008 16:29:18 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Ich bin ein kompletter Neuling in der Programmiersprache C++,</p>
<p>ich möchte nun einfach nur eine Windows-Nachricht mit einem Text ausgeben, darunter die Schaltfläche 'ok' also eine typische windows-meldung...</p>
<p>Ich ahbe auch mal herrn google gefragt, doch google hatte auch keinen KOmplettcode für mich <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f622.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--crying_face"
      title=";("
      alt="😢"
    /></p>
<p>Ich weiß ja nocht nichtmla, was ich am Anfang includen muss etc...</p>
<p>Vielen vielen Dank im Vorraus...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1431914</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1431914</guid><dc:creator><![CDATA[::JET::LI::]]></dc:creator><pubDate>Sun, 06 Jan 2008 16:29:18 GMT</pubDate></item><item><title><![CDATA[Reply to Eine einfache windows-meldung ausgeben (OK) on Sun, 06 Jan 2008 17:17:52 GMT]]></title><description><![CDATA[<p>#include &lt;windows.h&gt;</p>
<p>MessageBox(0,&quot;jj&quot;,&quot;ww&quot;,MB_OK);<br />
Erster Parameter kann ein Windowhandle sein, wenn du eins hast</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1431947</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1431947</guid><dc:creator><![CDATA[wertzuiopü]]></dc:creator><pubDate>Sun, 06 Jan 2008 17:17:52 GMT</pubDate></item><item><title><![CDATA[Reply to Eine einfache windows-meldung ausgeben (OK) on Sun, 06 Jan 2008 18:22:33 GMT]]></title><description><![CDATA[<p>Hmm Melung auf Englisch übersetzen .. (message), dann danach mal in der MSDN Library gucken(denn Betriebsystem == Windows) nach &quot;Message&quot; und schon solltest du &quot;MessageBox Function&quot; bekommen.</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

int main()
{
    ::MessageBoxA(NULL, &quot;Das ist eine Nachricht!&quot;, NULL, MB_OK | MB_ICONINFORMATION);
}
</code></pre>
<p>...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1431993</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1431993</guid><dc:creator><![CDATA[*D*Evil]]></dc:creator><pubDate>Sun, 06 Jan 2008 18:22:33 GMT</pubDate></item><item><title><![CDATA[Reply to Eine einfache windows-meldung ausgeben (OK) on Mon, 07 Jan 2008 13:43:52 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile-var-mode-is-viewprofile-and-u-is-403.html" rel="nofollow">HumeSikkins</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-15.html" rel="nofollow">C++</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-4.html" rel="nofollow">WinAPI</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39405.html" 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/1432404</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1432404</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Mon, 07 Jan 2008 13:43:52 GMT</pubDate></item></channel></rss>