Archives for: "November 2008, 09"
Network Tester
This afternoon, I was practicing Socket Programming in C#. That is the reason I wrote this program. http://www.itblogs.info/download/NetworkTester.zip This program can check whether the port of IP address is opened. Note that, that is only a toy to… more »
How to open a url from winform LinkLabel.
That is easy! In Click of LinkLabel: System.Diagnostics.Process.Start("http://www.itblogs.info/"); Then .Net Runtime will call your default browser. more »