The Chilkat.CkString class will include a autoLinkUrls method to automatically find and create HTML hyperlinks for URLs found in text. It is available in the pre-release for the 2.0 Framework at http://www.chilkatsoft.com/preRelease.asp
It will be available in all platforms (ActiveX, C++, Perl, Ruby, Java, Python, etc.) in the next official release. Here is an example:
Chilkat.CkString str = new Chilkat.CkString();
str.append("This is a test (http://www.chilkatsoft.com/) of the URL auto-linking.");
str.autoLinkUrls();
textBox1.Text = str.getString();
After auto-linking, the text becomes:
This is a test (<a href="http://www.chilkatsoft.com/">http://www.chilkatsoft.com/</a>) of the URL auto-linking.