Age Calculation

Submitted by Amoako on

This is a simple visual basic 6.0 age calculation I made. Just enter the date of birth on start date caption and click ok, then you will see a computation of your age. If start date is greater than end date, form validation will appear saying Date Of Birth can not be greater then current Date. Hope you learn from this.

Display Bios Information in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a program that can display the hardware information of the BIOS using VB.NET. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add a TabControl and a DataGridView Only.

Palindrome Number in Java Application

Submitted by GeePee on
The following Java program application is a Palindrome Number. An integer is a Palindrome if it reads forward and backward in the same way, ignoring any leading minus sign. In this program, we use an input dialog box to get the input and an output dialog box to show the output. I will be using the JCreator IDE in developing the program.