Dec 9 2008

How to get processor id (CPU’s ID) using Visual Basic.Net

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Some times we do need to find out the cpu’s id, which is unique for each CPU. This code example will help you to perform this task in vb.net.
To Execute the code, create a Visual Basic Windows Application in [...]

Oct 22 2008

Top 5 questions from stackoverflow

As geeks you should always keep a watch on all the programming related websites. Stackoverflow.com is a must site for programmers (I know.. I know I need not mention that ). Here is a list of top 5 questions from stackverflow.

Option Strict On and .NET for VB6 programmers
Great programming quotes : This is my [...]

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 20 2008

Links for Sunday #2

Create a simple powerful product highlighter with mootools/
Ootips : Object Orientation tips
AJAX - The official Microsoft ASP.net site
Bost your website speed by 500% with 3 lines of code
63+ best practices to optimize PHP code
Convert C# to VB.net
Amazing splits
10Open source tools every .net programmer should have
AJAX Daddy : Ajz examples in action
Mini AJAX

    

[...]

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
[...]