<?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[Programm verbergen]]></title><description><![CDATA[<p>Hi<br />
Ich möchte, dass eine Internetseite im Hintergrunf geöffnet wird. Ich hab das schon mit SW_HIDE ausprobiert aber das klappt nicht?</p>
<p>#include &lt;iostream&gt;<br />
#include &lt;fstream&gt;<br />
#include &lt;windows.h&gt;<br />
#include &lt;winable.h&gt;<br />
#include &lt;string&gt;<br />
using namespace std;<br />
int main()<br />
{<br />
ShellExecute( NULL, &quot;open&quot;, &quot;<a href="http://www.google.de" rel="nofollow">http://www.google.de</a>&quot;, NULL, NULL, SW_HIDE);</p>
<p>}</p>
<p>Mit welchen Befehl kann man ein Programm im Hintergrund ausführen lassen?<br />
Und welchen Befehl braucht man um es wieder zu schließen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/230542/programm-verbergen</link><generator>RSS for Node</generator><lastBuildDate>Sun, 27 Sep 2026 07:59:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/230542.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 28 Dec 2008 16:14:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Programm verbergen on Sun, 28 Dec 2008 16:14:44 GMT]]></title><description><![CDATA[<p>Hi<br />
Ich möchte, dass eine Internetseite im Hintergrunf geöffnet wird. Ich hab das schon mit SW_HIDE ausprobiert aber das klappt nicht?</p>
<p>#include &lt;iostream&gt;<br />
#include &lt;fstream&gt;<br />
#include &lt;windows.h&gt;<br />
#include &lt;winable.h&gt;<br />
#include &lt;string&gt;<br />
using namespace std;<br />
int main()<br />
{<br />
ShellExecute( NULL, &quot;open&quot;, &quot;<a href="http://www.google.de" rel="nofollow">http://www.google.de</a>&quot;, NULL, NULL, SW_HIDE);</p>
<p>}</p>
<p>Mit welchen Befehl kann man ein Programm im Hintergrund ausführen lassen?<br />
Und welchen Befehl braucht man um es wieder zu schließen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1636540</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1636540</guid><dc:creator><![CDATA[19freddy92]]></dc:creator><pubDate>Sun, 28 Dec 2008 16:14:44 GMT</pubDate></item><item><title><![CDATA[Reply to Programm verbergen on Sun, 28 Dec 2008 16:30:02 GMT]]></title><description><![CDATA[<p>Das ist etwas, was man nicht tun sollte. Und mir scheint auch, dass du eigentlich was anderes erreichen möchtest, wenn ich kurz nach deinen Beiträgen gesucht habe.<br />
Du benutzt C++/CLI, dann benutze doch im .Net Framework die entsprechenden HTTP Klassen:<br />
<a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.webrequest(VS.71).aspx</a></p>
<p>So kannst du selber ein Http Request an den Server schicken, ohne dies über einen externen Browser machen zu müssen.</p>
<p>Edit: Falscher Link ^^</p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1636547</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1636547</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Sun, 28 Dec 2008 16:30:02 GMT</pubDate></item><item><title><![CDATA[Reply to Programm verbergen on Mon, 29 Dec 2008 10:25:21 GMT]]></title><description><![CDATA[<p>Hi.<br />
Ich habe jetzt diesen Queltext von der <a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest(VS.71).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.webrequest(VS.71).aspx</a> und von <a href="http://msdn.microsoft.com/de-de/library/system.net.webrequest(VS.80).aspx" rel="nofollow">http://msdn.microsoft.com/de-de/library/system.net.webrequest(VS.80).aspx</a> ausprobiert:</p>
<p>using System;<br />
using <a href="http://System.IO" rel="nofollow">System.IO</a>;<br />
using <a href="http://System.Net" rel="nofollow">System.Net</a>;<br />
using System.Text;</p>
<p>namespace <a href="http://Examples.System.Net" rel="nofollow">Examples.System.Net</a><br />
{ public class WebRequestGetExample {<br />
public static void Main ()<br />
{<br />
WebRequest myRequest = WebRequest.Create(&quot;<a href="http://www.contoso.com" rel="nofollow">http://www.contoso.com</a>&quot;);</p>
<p>// Return the response.<br />
WebResponse myResponse = myRequest.GetResponse();</p>
<p>// Code to use the WebResponse goes here.</p>
<p>// Close the response to free resources.<br />
myResponse.Close();<br />
} }<br />
}</p>
<p>Aber der Compiler sagt immer zu mir, dass System nicht deklariert wurde. Was muss ich verändern, damit das Programm funktioniert?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1636757</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1636757</guid><dc:creator><![CDATA[19freddy92]]></dc:creator><pubDate>Mon, 29 Dec 2008 10:25:21 GMT</pubDate></item><item><title><![CDATA[Reply to Programm verbergen on Mon, 29 Dec 2008 12:01:15 GMT]]></title><description><![CDATA[<p>Das Programm ist in der Sprache C++/CLI mit der .NET-Bibliothek. Dafür brauchst Du Visual Studio und ein CLR-Projekt.</p>
<p>Aber ich dachte, Du wolltest C++?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1636787</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1636787</guid><dc:creator><![CDATA[LordJaxom]]></dc:creator><pubDate>Mon, 29 Dec 2008 12:01:15 GMT</pubDate></item><item><title><![CDATA[Reply to Programm verbergen on Mon, 29 Dec 2008 14:15:23 GMT]]></title><description><![CDATA[<p>Ja ich will das eigentlich auch mit c++ machen aber ich dachte, dass wäre eine bestimmte art von c++, weil der Queltext die Überschrift C# hatte.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1636856</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1636856</guid><dc:creator><![CDATA[19freddy92]]></dc:creator><pubDate>Mon, 29 Dec 2008 14:15:23 GMT</pubDate></item><item><title><![CDATA[Reply to Programm verbergen on Mon, 29 Dec 2008 14:50:39 GMT]]></title><description><![CDATA[<p>19freddy92 schrieb:</p>
<blockquote>
<p>Ja ich will das eigentlich auch mit c++ machen aber ich dachte, dass wäre eine bestimmte art von c++, weil der Queltext die Überschrift C# hatte.</p>
</blockquote>
<p>Dann war dein Post (<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-230472.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-230472.html</a>) im falschen Forum und du programmierst gar nicht mit C++/CLI?<br />
Denn C, C++, C++/CLI, C# sind alles unterschiedliche Sprachen.</p>
<p>Falls du es nun mit reinem C++ machen willst, dann wäre wohl CURLPP die richtige Bibliothek für dich:<br />
<a href="http://curl.haxx.se/libcurl/cplusplus/" rel="nofollow">http://curl.haxx.se/libcurl/cplusplus/</a></p>
<p>Grüssli</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1636879</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1636879</guid><dc:creator><![CDATA[Dravere]]></dc:creator><pubDate>Mon, 29 Dec 2008 14:50:39 GMT</pubDate></item></channel></rss>