<?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[datei öffnen ohne dosbox]]></title><description><![CDATA[<p>hi,</p>
<p>ich will aus c++ heraus eine zuvor geschriebene datei öffnen (html) und das funktioniert auch mit</p>
<pre><code class="language-cpp">system(&quot;c:\\report.html&quot;);
</code></pre>
<p>aber leider geht dabei immer ein dos box auf, die zwar wieder verschwindet aber trotzdem störend ist. gibts da eine andere möglichkeit die datei zu öffnen oder ide dosbox zu unterdrücken?</p>
<p>thx<br />
lordy</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/83258/datei-öffnen-ohne-dosbox</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 17:10:46 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/83258.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 19 Aug 2004 07:26:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to datei öffnen ohne dosbox on Thu, 19 Aug 2004 07:26:21 GMT]]></title><description><![CDATA[<p>hi,</p>
<p>ich will aus c++ heraus eine zuvor geschriebene datei öffnen (html) und das funktioniert auch mit</p>
<pre><code class="language-cpp">system(&quot;c:\\report.html&quot;);
</code></pre>
<p>aber leider geht dabei immer ein dos box auf, die zwar wieder verschwindet aber trotzdem störend ist. gibts da eine andere möglichkeit die datei zu öffnen oder ide dosbox zu unterdrücken?</p>
<p>thx<br />
lordy</p>
]]></description><link>https://www.c-plusplus.net/forum/post/586002</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/586002</guid><dc:creator><![CDATA[lord_bk]]></dc:creator><pubDate>Thu, 19 Aug 2004 07:26:21 GMT</pubDate></item><item><title><![CDATA[Reply to datei öffnen ohne dosbox on Thu, 19 Aug 2004 07:54:02 GMT]]></title><description><![CDATA[<p>Servus,</p>
<p>ei klaro geht das. Du kannst z.B. ShellExecute benutzen:</p>
<pre><code class="language-cpp">ShellExecute(0,0, &quot;http://www.katzenklo.de/&quot;, 0, 0, SW_SHOW);
</code></pre>
<p>oder mit WinExec geht das glaube ich auch:</p>
<pre><code class="language-cpp">WinExec(&quot;http://www.katzenklo.de/&quot;, SW_SHOW);
</code></pre>
<p>*winke*<br />
Hellsgore</p>
]]></description><link>https://www.c-plusplus.net/forum/post/586032</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/586032</guid><dc:creator><![CDATA[Hellsgore]]></dc:creator><pubDate>Thu, 19 Aug 2004 07:54:02 GMT</pubDate></item></channel></rss>