From the category archives:

.Net

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

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

Download Free ASP.Net Video Tutorials from Microsoft

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

.Net Programming

Checking Prime Number in VB.Net

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.

.Net Programming

Check for Palindrome in VB.Net

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

.Net Programming

Different Types of MessageBoxes in VB.Net

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

.Net Programming

Inheritance in VB.Net

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

.Net Programming

Fibonacci Series in VB.Net

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

.Net Programming

ArrayList in VB.Net

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 .

.Net Framework Programming Cheat Sheet

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

.Net Programming

Default & Parametrized 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.

.Net Programming

Swap using Call by Reference and Call By Value

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.


WordPress - Vaibhav Kanwal