WebLinkLabel Control
The WebLinkLabel is a simple wrapper around the standard .NET Windows Forms LinkLabel. It makes it easy to put different links in a label, like you would in a web page, and clicking on those links will open them in the user's default browser.
It basically works just like a LinkLabel. You can drag it from your toolkit onto a form, and set all the same properties. Setting the Text or LinkText to a specially-formatted string will automatically insert links. Just write out your links like this: "Hello, this is text <url=http://brh.numbera.com>with a link in it</url>." You can have as many links as you want.
If you want to access the "source" text, with the "url" tags in it, use the LinkText property. If you want to just get the text out, without the "url" tags, use the standard Text property.
Like PopupNotify, WebLinkLabel was created for XBList, and therefore it's probably not as general or polished as it could be. Please feel free to improve on the code and send it back to me, so that it can benefit everybody (and you get your name in the credits for the file!)

