ColorDialog Tutorial in VB.NET

Color Dialog is one of the important features in VB.NET. It represents a common dialog box that displays available colors along with controls that enable the user to define custom colors. Now, let's start this Color Dialog 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.

View Source of a Website

All Internet browsers allow users to view the HTML or other source code of any of the web pages they visit. For example, a user can view the code used to generate page source of website. Here in this tutorial, we will make a program that can view the source of a website. So, 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.

C++ Tutorial: Multiplication Checker. Random in C++/CLI

   Today we will talk about random numbers in C++/CLI. Also I will show you a simple program, where I have used random numbers generator. First of all I should tell some words about the program. The main purpose of it will be to check your math knowledge in multiplication. It will generate two random numbers and you should multiply them and write the result. If the result is correct, program will show you the message “Correct”.

Spell Number Function in Excel

Simple vb code (module) that can be integrated in excel to convert numbers into word. This example is convert hour(in number) to word, this code is a excel function which is the SpellNumber() function. Here is the process to integrate it to excel: 1. Download the sample module here. 2. First open excel file. 3. Press ALT + F11; new module creator will appear. 4. Just import the downloaded module

LinkLabel Control in VB.NET

We often see hyperlinks along the way in our websites, forms, etc. Same here in vb.net that we can also use this control to link to other websites through the use of linklabel. LinkLabel controls enable a user to hyperlink to a URL that points to either the Web or the local directory system. The idea is to put the email address or web URL into the Text property of a LinkLabel component, then when the label is clicked, the LinkClicked event is triggered.

RFID Device with VB.Net

This System is written in VB.NET. It aims to demonstrate on how to make a system in vb.net using RFID Device... *The system will capture and show the RFID Number of the Card in the textbox once it is swiped or tapped on the device. Requirements - Visual Studio 2010 or Visual Studio 2012 and you should have installed the RFID driver. For students who needs program or source code for thesis writing

Valid or Invalid Phone Number in VB.NET

Hi! This is my another tutorial in VB.NET entitled "Validating a Phone Number". We will just validate a phone number by using the System.Text.RegularExpressions namespace. So, 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 one TextBox named TextBox1 which will be used to input the phone number.

Check And Unchecked All Checkbox Using Javascript

This tutorial will help you on how to check and unchecked all checkbox in your form using javascript. This tutorial will be helpful to thus programmer who are developing a system that involves many checkbox with check and unchecked function. This feature is very useful also for user because they don't have to check the checkbox one by one.

Calculate Your Age Using VB.NET

We often forgot to know what other people's age is. So now, in this tutorial, we will make a program entitled "Calculating age using VB.NET" So, 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 one DateTimePicker named DateTimePicker1 to have input of our dates.

C++ Tutorial: Learn ComboBox Control in Visual C++

   In this tutorial we will talk about Combo Box control in Visual C++. Also we will make a simple program for basic arithmetical operations: addition, subtraction, multiplication and division.    First of all, let`s see what is Combo Box control. Combo Box control is little same to Text Edit, but it has one more option. You can add some constant values to be used in this control. While your program is running, you can choose one of your constant values and after that this value will be as the value of this control. It is really comfortable than you need to help user to choose option needed.