VB Dot NET Programs

Given below is a list of VB Dot NET Programs Create console application showing the use of conditional constructs – if, if-else, if-else if-else, nested if, select case. Create a console application showing the use of loops – Do….While loop, Do Until … Loop, While… Wend, For …  Next, For Each … Next. Create a simple windows application showing the […]

Database Record Navigation Example Using ADO.NET

This article demonstrates a Database Record Navigation Example Using ADO.NET. The following example uses VB.NET. While the C# code is available here. Basically, .NET Framework provides the ADO.NET library that comprises classes and methods for connecting the application with a database and performing various operations on it. Creating Database in SQL Server At first, start Visual Studio and create a […]

Examples of Dialog Controls in VB.NET

This article demonstrates some Examples of Dialog Controls in VB.NET. As can be seen, the example given below shows the usage of ColorDialog, FontDialog, and SaveFileDialog. Changing the BackColor and ForeColor of the text using ColorDialog In order to use the ColorDialog control, create an object of it and call the ShowDialog() method. For example, Dim cd As New ColorDialog […]

VB Dot NET Practice Exercise

The following VB Dot NET Practice Exercise will help you learn and practices this language. Basically, VB.NET is for Rapid Application Development (RAD). Further, the following exercise contains both Console applications and Windows Forms applications. List of Programs in VB Dot NET Practice Exercise This VB Dot NET Practice Exercise also contains solutions to these programs. 1) WAP to display “Hello World” […]

Find a Palindrome Number in VB.NET

The following example shows how to Find a Palindrome Number in VB.NET. To begin with, let us first understand what a palindrome number is. Basically, a palindrome number is a number that is equal to the number obtained by reversing the given number. Therefore, a palindrome number remains the same when we reverse its digits. Also, it is called a numeral palindrome. Further, […]