<?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[WinExec und net.exe]]></title><description><![CDATA[<p>Hallo,</p>
<p>bin gerade bisschen am c++ programmieren / lernen.</p>
<p>und nun hab ich mir gedacht ich mache ein Programm um mit hilfe von net.exe<br />
Nachrichten im LAN zu vershcicken.</p>
<p>WinExec(&quot;net.exe send MeinRechner Text&quot;, SW_SHOW);</p>
<p>Meine frage wie kann ich</p>
<p>MeinRechner und Text als Variable übergeben `?</p>
<p>mfg Danu</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/57717/winexec-und-net-exe</link><generator>RSS for Node</generator><lastBuildDate>Tue, 02 Jun 2026 14:27:53 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/57717.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 07 Dec 2003 11:31:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to WinExec und net.exe on Sun, 07 Dec 2003 11:31:09 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>bin gerade bisschen am c++ programmieren / lernen.</p>
<p>und nun hab ich mir gedacht ich mache ein Programm um mit hilfe von net.exe<br />
Nachrichten im LAN zu vershcicken.</p>
<p>WinExec(&quot;net.exe send MeinRechner Text&quot;, SW_SHOW);</p>
<p>Meine frage wie kann ich</p>
<p>MeinRechner und Text als Variable übergeben `?</p>
<p>mfg Danu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/410164</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/410164</guid><dc:creator><![CDATA[danu]]></dc:creator><pubDate>Sun, 07 Dec 2003 11:31:09 GMT</pubDate></item><item><title><![CDATA[Reply to WinExec und net.exe on Sun, 07 Dec 2003 12:13:44 GMT]]></title><description><![CDATA[<p>Also wenn die Funtion so klappt,</p>
<pre><code class="language-cpp">WinExec(&quot;net.exe send MeinRechner Text&quot;, SW_SHOW);
</code></pre>
<p>dann würd ich den ersten paramenter einfach in ne CString variable packen:</p>
<pre><code class="language-cpp">CString ersterParameter;
//Variablen MeinRecher und Text mit den jeweilgen werten belegen.
ersterParameter.Format(&quot;net.exe send %s %s&quot;,MeinRechner,Text);
WinExec(ersterParameter,SW_SHOW);
</code></pre>
<p>Ich hoff doch ma dass das so klappt. Habs bis jetz noch nicht getestet.</p>
<p>MFG</p>
<p>Hansi</p>
]]></description><link>https://www.c-plusplus.net/forum/post/410195</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/410195</guid><dc:creator><![CDATA[Hansi]]></dc:creator><pubDate>Sun, 07 Dec 2003 12:13:44 GMT</pubDate></item><item><title><![CDATA[Reply to WinExec und net.exe on Sun, 07 Dec 2003 12:47:42 GMT]]></title><description><![CDATA[<p>geht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":-)"
      alt="🙂"
    /></p>
<p>danke schön</p>
]]></description><link>https://www.c-plusplus.net/forum/post/410222</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/410222</guid><dc:creator><![CDATA[danu]]></dc:creator><pubDate>Sun, 07 Dec 2003 12:47:42 GMT</pubDate></item></channel></rss>