Nov 20 2008

BugTracker.NET free bug tracker

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!I was searching for a bug tracker for a project and I wanted something simple, easy to install and last but not least FREE.
I stumbled upon this wonderful free bug tracker called BugTracker.NET. More details about this tool is [...]

Aug 11 2008

.NET Framework 3.5 Common Namespaces and Types Poster

The .NET Framework 3.5 Common Namespaces and Types Poster is downloadable as XPS or PDF format. Print one and hang it on your wall Download it here

    

Jul 17 2008

extract/get email address from string using vb.net

Here is a simple VB.Net code to extract email addresses from a string

Imports System.Text.RegularExpressions
 
Public Class Form1
 
Private Sub btnExtract_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExtract.Click
 
Dim textstring As Array
Dim strEmail As String
[...]