<?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[ShellExecuteEx - IP angeben und öffnen]]></title><description><![CDATA[<p>Ich möchte mit ShelleExecuteEx über die IP auf einen LAN-PC<br />
zugreifen. Leider geht es nicht so wie ich will.<br />
Wichtig ist, dass geprüft wird, ob überhaupt der Zugriff auf<br />
die IP möglich ist. Denn wenn der PC nicht online ist müsste<br />
doch ShellExecuteEx fehlschlagen oder?</p>
<pre><code class="language-cpp">SHELLEXECUTEINFO ShellInfo; 
    memset(&amp;ShellInfo, 0, sizeof(ShellInfo)); 
    ShellInfo.cbSize = sizeof(ShellInfo); 
    ShellInfo.hwnd = NULL; 
    ShellInfo.lpVerb = &quot;open&quot;; 
	ShellInfo.lpFile = &quot;\\\\192.169.169.10&quot;; 
        ShellInfo.lpParameters = NULL; 
    ShellInfo.nShow = SW_SHOW; 
    ShellInfo.fMask = SEE_MASK_NOCLOSEPROCESS; 
    bool res = ShellExecuteEx(&amp;ShellInfo); 
	if(res==true){
		MessageBox(&quot;alles ok&quot;);
	}else{
		MessageBox(&quot;Fehler!&quot;);
	}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/124933/shellexecuteex-ip-angeben-und-öffnen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 07 Jul 2026 13:08:10 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/124933.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 01 Nov 2005 22:52:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ShellExecuteEx - IP angeben und öffnen on Tue, 01 Nov 2005 22:52:19 GMT]]></title><description><![CDATA[<p>Ich möchte mit ShelleExecuteEx über die IP auf einen LAN-PC<br />
zugreifen. Leider geht es nicht so wie ich will.<br />
Wichtig ist, dass geprüft wird, ob überhaupt der Zugriff auf<br />
die IP möglich ist. Denn wenn der PC nicht online ist müsste<br />
doch ShellExecuteEx fehlschlagen oder?</p>
<pre><code class="language-cpp">SHELLEXECUTEINFO ShellInfo; 
    memset(&amp;ShellInfo, 0, sizeof(ShellInfo)); 
    ShellInfo.cbSize = sizeof(ShellInfo); 
    ShellInfo.hwnd = NULL; 
    ShellInfo.lpVerb = &quot;open&quot;; 
	ShellInfo.lpFile = &quot;\\\\192.169.169.10&quot;; 
        ShellInfo.lpParameters = NULL; 
    ShellInfo.nShow = SW_SHOW; 
    ShellInfo.fMask = SEE_MASK_NOCLOSEPROCESS; 
    bool res = ShellExecuteEx(&amp;ShellInfo); 
	if(res==true){
		MessageBox(&quot;alles ok&quot;);
	}else{
		MessageBox(&quot;Fehler!&quot;);
	}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/906087</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/906087</guid><dc:creator><![CDATA[errorcode]]></dc:creator><pubDate>Tue, 01 Nov 2005 22:52:19 GMT</pubDate></item></channel></rss>