<?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[Website öffnen in c++???]]></title><description><![CDATA[<p>Hallo<br />
wollte ein Programm schreiben das wenn ich den benutzername und passwort eingeb sich das Programm in den Router einloggt.<br />
Aber ich weiß nicht wie man den Link im Browser öffnen kann.</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#include &lt;vcl.h&gt;
#pragma hdrstop

#include &quot;Unit1.h&quot;
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
        : TForm(Owner)
{
}
//---------------------------------------------------------------------------

void __fastcall TForm1::Button1Click(TObject *Sender)
{
String strUsr = Edit1-&gt;Text;
String strPas = Edit2-&gt;Text;
String strCommand = &quot;http://&quot; + strUsr + &quot;:&quot; + strPas +&quot;@192.168.0.1/&quot;;
ShowMessage(&quot;Sie werden verbunden mit: &quot; + strCommand);
system(strCommand.c_str());
}
//---------------------------------------------------------------------------
</code></pre>
<p>bedanke mich schonmal im voraus<br />
mfG. Kevin</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/194500/website-öffnen-in-c</link><generator>RSS for Node</generator><lastBuildDate>Tue, 18 Aug 2026 05:50:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/194500.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 07 Oct 2007 18:06:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Website öffnen in c++??? on Sun, 07 Oct 2007 18:06:06 GMT]]></title><description><![CDATA[<p>Hallo<br />
wollte ein Programm schreiben das wenn ich den benutzername und passwort eingeb sich das Programm in den Router einloggt.<br />
Aber ich weiß nicht wie man den Link im Browser öffnen kann.</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

#include &lt;vcl.h&gt;
#pragma hdrstop

#include &quot;Unit1.h&quot;
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
        : TForm(Owner)
{
}
//---------------------------------------------------------------------------

void __fastcall TForm1::Button1Click(TObject *Sender)
{
String strUsr = Edit1-&gt;Text;
String strPas = Edit2-&gt;Text;
String strCommand = &quot;http://&quot; + strUsr + &quot;:&quot; + strPas +&quot;@192.168.0.1/&quot;;
ShowMessage(&quot;Sie werden verbunden mit: &quot; + strCommand);
system(strCommand.c_str());
}
//---------------------------------------------------------------------------
</code></pre>
<p>bedanke mich schonmal im voraus<br />
mfG. Kevin</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1379945</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1379945</guid><dc:creator><![CDATA[kevin2911]]></dc:creator><pubDate>Sun, 07 Oct 2007 18:06:06 GMT</pubDate></item><item><title><![CDATA[Reply to Website öffnen in c++??? on Sun, 07 Oct 2007 18:52:47 GMT]]></title><description><![CDATA[<p>Siehe <a href="http://www.c-plusplus.net/forum/viewtopic.php?t=39305" rel="nofollow">FAQ</a> unter &quot;Verschiedenes - URL im Standardbrowser öffnen&quot;.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380001</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380001</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Sun, 07 Oct 2007 18:52:47 GMT</pubDate></item><item><title><![CDATA[Reply to Website öffnen in c++??? on Sun, 07 Oct 2007 19:50:58 GMT]]></title><description><![CDATA[<p>Danke für die Antwort aber genau das geht nicht in meinem quelltext!<br />
Habe den link ja nicht komplett sonder in einzelnen teilen der nacher zusammengefügt wird!</p>
<p>mfG. Kevin</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380052</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380052</guid><dc:creator><![CDATA[kevin2911]]></dc:creator><pubDate>Sun, 07 Oct 2007 19:50:58 GMT</pubDate></item><item><title><![CDATA[Reply to Website öffnen in c++??? on Sun, 07 Oct 2007 20:37:14 GMT]]></title><description><![CDATA[<p>&quot;Geht nicht&quot; ist keine ausreichende Problembeschreibung.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380081</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380081</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Sun, 07 Oct 2007 20:37:14 GMT</pubDate></item><item><title><![CDATA[Reply to Website öffnen in c++??? on Mon, 08 Oct 2007 05:11:38 GMT]]></title><description><![CDATA[<p>Hallo,<br />
ich bin mir nicht sicher ob ich das Problem richtig verstanden habe,<br />
wenn ja sollte Deine Lösung so aussehen:</p>
<pre><code class="language-cpp">String strUsr = Edit1-&gt;Text;
String strPas = Edit2-&gt;Text;
String strCommand = &quot;http://&quot; + strUsr + &quot;:&quot; + strPas +&quot;@192.168.2.1/&quot;;
ShowMessage(&quot;Sie werden verbunden mit: &quot; + strCommand);
ShellExecute(Handle, &quot;open&quot;,strCommand.c_str(),NULL,NULL,SW_SHOWDEFAULT);
</code></pre>
<p>Gruß myerscola</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380185</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380185</guid><dc:creator><![CDATA[myerscola]]></dc:creator><pubDate>Mon, 08 Oct 2007 05:11:38 GMT</pubDate></item><item><title><![CDATA[Reply to Website öffnen in c++??? on Mon, 08 Oct 2007 13:14:06 GMT]]></title><description><![CDATA[<p>Danke myerscola genau das habe ich gemeint! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1380475</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1380475</guid><dc:creator><![CDATA[kevin2911]]></dc:creator><pubDate>Mon, 08 Oct 2007 13:14:06 GMT</pubDate></item></channel></rss>