<?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[Hintergrund Musik]]></title><description><![CDATA[<p>Mein problem ist ich will Musik abspielen ohne einen sichtbaren Player??? problem 1... und problem zwei... ich will das wenn man auf einen Button klickt diese Musik auch schon wieder stopt... Wie mache ich das??? Benutze den Borland C++ Builder... Bitte anleitung wirklich einfach schreiben, bin totaler Neuling...thx</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/195678/hintergrund-musik</link><generator>RSS for Node</generator><lastBuildDate>Tue, 18 Aug 2026 10:28:35 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/195678.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 20 Oct 2007 14:45:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Hintergrund Musik on Sat, 20 Oct 2007 14:45:44 GMT]]></title><description><![CDATA[<p>Mein problem ist ich will Musik abspielen ohne einen sichtbaren Player??? problem 1... und problem zwei... ich will das wenn man auf einen Button klickt diese Musik auch schon wieder stopt... Wie mache ich das??? Benutze den Borland C++ Builder... Bitte anleitung wirklich einfach schreiben, bin totaler Neuling...thx</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1389012</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1389012</guid><dc:creator><![CDATA[zwerg91]]></dc:creator><pubDate>Sat, 20 Oct 2007 14:45:44 GMT</pubDate></item><item><title><![CDATA[Reply to Hintergrund Musik on Sat, 20 Oct 2007 16:25:22 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Siehe : PlaySound</p>
<p>Nash</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1389054</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1389054</guid><dc:creator><![CDATA[Nash]]></dc:creator><pubDate>Sat, 20 Oct 2007 16:25:22 GMT</pubDate></item><item><title><![CDATA[Reply to Hintergrund Musik on Sun, 21 Oct 2007 13:21:19 GMT]]></title><description><![CDATA[<p>Habe ich vielen Dank</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1389338</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1389338</guid><dc:creator><![CDATA[zwerg91]]></dc:creator><pubDate>Sun, 21 Oct 2007 13:21:19 GMT</pubDate></item><item><title><![CDATA[Reply to Hintergrund Musik on Sun, 21 Oct 2007 13:25:56 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;Mmsystem.h&gt;

//---------------------------------------------------------------------------
BOOL play(char *name)
{
  PlaySound(name, NULL, SND_FILENAME | SND_ASYNC);
  return 0;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button2Click(TObject *Sender)
{
  play(&quot;DeinSound.wav&quot;);
}
//---------------------------------------------------------------------------
</code></pre>
<p><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>
<p>Edit: Zu langsam...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1389340</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1389340</guid><dc:creator><![CDATA[Tippokrates]]></dc:creator><pubDate>Sun, 21 Oct 2007 13:25:56 GMT</pubDate></item></channel></rss>