<?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[wordpad mit prog öffnen?[gelöst]]]></title><description><![CDATA[<p>wie kann ich mit meinem programm wordpad öffnen?<br />
wär schön wenn einer ne idee hat.<br />
gruß<br />
ebrosius</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/116123/wordpad-mit-prog-öffnen-gelöst</link><generator>RSS for Node</generator><lastBuildDate>Fri, 03 Jul 2026 01:57:38 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/116123.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 23 Jul 2005 10:04:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sun, 24 Jul 2005 11:03:40 GMT]]></title><description><![CDATA[<p>wie kann ich mit meinem programm wordpad öffnen?<br />
wär schön wenn einer ne idee hat.<br />
gruß<br />
ebrosius</p>
]]></description><link>https://www.c-plusplus.net/forum/post/836704</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/836704</guid><dc:creator><![CDATA[ebrosius]]></dc:creator><pubDate>Sun, 24 Jul 2005 11:03:40 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 10:45:04 GMT]]></title><description><![CDATA[<p>hoff da ist was für dich dabei suche mal z.b. bei google nach folgenden begriffen<br />
verwenden sollte man wohl eines der letzten beiden</p>
<p>system()</p>
<p>WinExec()<br />
soll wohl nicht mehr genommen werden an deren stelle CreateProcess nehmen</p>
<p>ShellExecute()<br />
<a href="http://msdn.microsoft.com/library/d...hellexecute.asp" rel="nofollow">http://msdn.microsoft.com/library/d...hellexecute.asp</a></p>
<p>CreateProcess()</p>
<p>GetExitCodeProcess()<br />
wenn du darauf warten willst das der prozess beendet ist</p>
]]></description><link>https://www.c-plusplus.net/forum/post/836736</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/836736</guid><dc:creator><![CDATA[Skippy]]></dc:creator><pubDate>Sat, 23 Jul 2005 10:45:04 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 21:11:23 GMT]]></title><description><![CDATA[<p>ich kriegs einfach nich gebacken, möchte einfach nur ne anwendung, zb. paint, editor.., öffnen.<br />
was mach ich falsch:</p>
<p>#include &lt;windows.h&gt;<br />
#include &lt;shellapi.h&gt;</p>
<p>int main(int argc, char *argv[])<br />
{<br />
ShellExecute(0, &quot;open&quot;, &quot;C:\Dokumente und Einstellungen\...&quot;, NULL, NULL, 0);<br />
return 0;<br />
}</p>
<p>ich bekomms compiliert aber es passiert garnichts</p>
]]></description><link>https://www.c-plusplus.net/forum/post/837083</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837083</guid><dc:creator><![CDATA[ebrosius]]></dc:creator><pubDate>Sat, 23 Jul 2005 21:11:23 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 22:03:25 GMT]]></title><description><![CDATA[<p>Was gibt denn ShellExceute als Fehlercode zurück?</p>
<p>MfG SideWinder</p>
]]></description><link>https://www.c-plusplus.net/forum/post/837101</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837101</guid><dc:creator><![CDATA[SideWinder]]></dc:creator><pubDate>Sat, 23 Jul 2005 22:03:25 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 22:07:18 GMT]]></title><description><![CDATA[<p>ebrosius schrieb:</p>
<blockquote>
<p>#include &lt;windows.h&gt;<br />
#include &lt;shellapi.h&gt;</p>
<p>int main(int argc, char <em>argv[])<br />
{<br />
ShellExecute(0, &quot;open&quot;, &quot;C:*<em>*<em>Dokumente und Einstellungen</em></em>*</em>...&quot;, NULL, NULL, 0);<br />
return 0;<br />
}</p>
</blockquote>
<p>Seit wann geht das so?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/837103</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837103</guid><dc:creator><![CDATA[WTF_Wayne]]></dc:creator><pubDate>Sat, 23 Jul 2005 22:07:18 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 22:08:46 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/9315">@ebrosius</a> ich sag nur lol du hast anscheinend genauso wenige infos dazu gefunden wie ich</p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/functions/shellexecute.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/functions/shellexecute.asp</a></p>
<p>shellexecute ist zum ausführen von dateien mit ihren zugeordneten programmen</p>
<p>daher damit öffnest du z.b. sample.bmp mit der verknüpften anwendung (Paint)</p>
<p>du müsstest also wie gesagt eines der beiden letten varianten nehmen daher</p>
<p>CreateProcess() oder GetExitCodeProcess()</p>
]]></description><link>https://www.c-plusplus.net/forum/post/837104</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837104</guid><dc:creator><![CDATA[Skippy]]></dc:creator><pubDate>Sat, 23 Jul 2005 22:08:46 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 22:12:25 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/201">@sideWinder</a> was meinst du? hab noch nie vorher shellexecute benutzt.<br />
kannst du mir n code posten wie man ne exe richtig ausführt. wäre super.<br />
hab schon ewig gegoogelt, irgendwas funzt immer nich.<br />
gruß<br />
ebrosius</p>
]]></description><link>https://www.c-plusplus.net/forum/post/837106</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837106</guid><dc:creator><![CDATA[ebrosius]]></dc:creator><pubDate>Sat, 23 Jul 2005 22:12:25 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 22:14:38 GMT]]></title><description><![CDATA[<p>ok skippy<br />
dann schau ich mal nach createprocess.<br />
thanx</p>
]]></description><link>https://www.c-plusplus.net/forum/post/837107</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837107</guid><dc:creator><![CDATA[ebrosius]]></dc:creator><pubDate>Sat, 23 Jul 2005 22:14:38 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sat, 23 Jul 2005 23:44:01 GMT]]></title><description><![CDATA[<p>hier der passende msdn artikel</p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/createprocess.asp" rel="nofollow">http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/createprocess.asp</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/837132</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837132</guid><dc:creator><![CDATA[Skippy]]></dc:creator><pubDate>Sat, 23 Jul 2005 23:44:01 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sun, 24 Jul 2005 07:53:27 GMT]]></title><description><![CDATA[<p>Ich habe das bei mir mit ShellExecute so gelöst:</p>
<pre><code class="language-cpp">ShellExecute(NULL, &quot;open&quot;, &quot;bla.exe&quot;, 0, NULL, SW_SHOW);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/837147</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837147</guid><dc:creator><![CDATA[Lupus]]></dc:creator><pubDate>Sun, 24 Jul 2005 07:53:27 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sun, 24 Jul 2005 11:02:46 GMT]]></title><description><![CDATA[<p>super lupus <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /><br />
klappt einwandfrei so. danach hab ich die ganze zeit gesucht.<br />
vielen dank<br />
gruß<br />
ebrosius</p>
]]></description><link>https://www.c-plusplus.net/forum/post/837227</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837227</guid><dc:creator><![CDATA[ebrosius]]></dc:creator><pubDate>Sun, 24 Jul 2005 11:02:46 GMT</pubDate></item><item><title><![CDATA[Reply to wordpad mit prog öffnen?[gelöst] on Sun, 24 Jul 2005 16:37:16 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=4" rel="nofollow">WinAPI</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/837510</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/837510</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Sun, 24 Jul 2005 16:37:16 GMT</pubDate></item></channel></rss>