usign web explorer component (ctrl+alt +x), then using the navigate method,
send the ip to there and it all show up.

Signature
Sincerely
Yaron Karni
http://dotnetbible.blogspot.com/
> Hi,
> I am new in C# and MS programming.
[quoted text clipped - 9 lines]
>
> Thanks a lot!
WolfgangD - 27 Aug 2007 14:37 GMT
> usign web explorer component (ctrl+alt +x), then using the navigate method,
> send the ip to there and it all show up.
[quoted text clipped - 15 lines]
>
> > Thanks a lot!
Great,
I added a WebBrowser Element:
private void textBox1_TextChanged(object sender, EventArgs e)
{
webBrowser1.Navigate(textBox1.Text);
}
private void webBrowser1_DocumentCompleted(object sender,
WebBrowserDocumentCompletedEventArgs e)
{
Now it is opening the Ip inside it...But how can I send the Ip to the
default Internet Explorer window????
Thanks
Wolfgang,
If you want to open the default browser, then all you have to do is
create a url and then pass that to the Process class. Basically, you would
create the string "http://10.x.x.x" and then pass that to the Process class.
The OS will then launch the default browser for the system with that URL.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Hi,
> I am new in C# and MS programming.
[quoted text clipped - 9 lines]
>
> Thanks a lot!
WolfgangD - 27 Aug 2007 16:23 GMT
On 27 Aug., 16:29, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.com> wrote:
> Wolfgang,
>
[quoted text clipped - 20 lines]
>
> > Thanks a lot!
Hi,
thanks
...
I found this:
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = URL;
process.Start();
That works great!!!