From the category archives:

.Net

Creating your own RSS Reader using VB.Net – Video Tutorials

October 19, 2009

This video series is designed specifically for individuals who are interested in learning the basics of creating applications using Visual Basic. The series includes over 10 hours of video-based instruction that walks you through creating your first “Hello World” application to a fully functioning RSS Reader application.
Related : Download Free Visual Basic .Net Video Tutorials [...]

0 comments

Download Free Visual Basic .Net Video Tutorials from Microsoft

October 19, 2009

Learn Microsoft .Net – Visual Basic using the following Video Tutorials by Microsoft. These are available for download along with the Project Source Code.
Related : Creating your own RSS Reader using VB.Net – Video Tutorials
For more Video Tutorials, Visit our Learn Section to download various tutorials, guides & videos on .Net, SQL, Programming, C/C++, Java.
Lesson [...]

2 comments

Download Free ASP.Net Video Tutorials from Microsoft

October 18, 2009
ASP.Net Logo

You can learn ASP.net from none other than Microsoft itself using their video tutorial series!

You can start learning ASP.net from scratch, know more about latest tips & tricks and implement new features of .net framework 3.5. The last time I checked, they’ve added tutorials on Visual Studio Web Developer 2008 Express.
Related : Download Free [...]

0 comments
.Net Programming

Checking Prime Number in VB.Net

October 14, 2009
Prime

Logic behind the program is to check till half of the number (n/2) because it has been observed that the remainders get repeated after half of the number. Therefore, checking for remainders till n/2 is sufficient enough. The use of modulus operator(%) is important in this regard.

0 comments
.Net Programming

Check for Palindrome in VB.Net

October 13, 2009
Palindrome

A String can be checked for palindrome using the String Reverse function in VB.Net.

0 comments
.Net Programming

Different Types of MessageBoxes in VB.Net

October 13, 2009

MessageBox Displays a modal dialog box that contains a system icon, a set of buttons, and a brief application-specific message, such as status or error information. The message box returns an integer value that indicates which button the user clicked. Simply put, a messagebox displays a message and its characteristics can be changed using different styles as explained in the following program

0 comments
.Net Programming

Inheritance in VB.Net

October 11, 2009

Implementating Inheritance by inheriting A Base class to create a derived class in VB.Net

0 comments
.Net Programming

Fibonacci Series in VB.Net

October 10, 2009

In mathematics, the Fibonacci numbers are the following sequence of numbers:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, . . .

0 comments
.Net Programming

ArrayList in VB.Net

October 10, 2009

ArrayList is one of the most flixible data structure from VB.NET Collections. ArrayList contains a simple list of values. Very easily we can add , insert , delete , view etc.. to do with ArrayList. It is very flexible becuse we can add without any size information , that is it grow dynamically and also shrink .

0 comments

.Net Framework Programming Cheat Sheet

October 4, 2009

.Net Framework Programming Cheat Sheet for learning shortcuts to common problems, list of useful syntax and other information to make coding easier.

0 comments
.Net Programming

Default & Parametrized Constructors

October 4, 2009
Default Constructors & Parameterized Constructors

Default Constructor is invoked every time an object of a class is created. Parametrized Constructor is invoked when a constructor’s signature has arguments. i.e it accepts parameters and is invoked explicitly.

0 comments
.Net Programming

Swap using Call by Reference and Call By Value

October 4, 2009
Call By Value, Call By Reference

Call by Reference makes the changes reflect back in the original variables while Call By Value works with copies of original values and changes are not reflected back in original values. Using the same concept, the SWAP function has been implemented in VB.Net.

0 comments