RadioButton Control in VB.NET

Submitted by donbermoy on
The RadioButton component lets you force a user to make a single selection from a set of choices. This component must be used in a group of at least two RadioButton instances. Only one member of the group can be selected at any given time. Now, we will create a RadioButtons that when chose it will change the background color of the Form. So, now let's start this tutorial! 1.

CheckBox Control

Submitted by donbermoy on
I had discussed RadioButton a while ago and now I will introduce the CheckBox Control in VB.NET. CheckBox and RadioButton controls have a similar function: they allow the user to choose from a list of options. CheckBox controls let the user pick a combination of options. In contrast, RadioButton controls allow a user to choose from mutually exclusive options. They have the same popular event of .Checked. 1.

ProgressBar Control

Submitted by donbermoy on
This is my 3rd tutorial for the controls in vb.net. The one that i will introduce today is the ProgressBar Control. A ProgressBar indicates the progress of an operation. The ProgressBar control consists of a window that is filled with the system highlight color as an operation progresses. So, now let's start this tutorial! 1.

ListBox Adding and Removing an Item in VB.NET

Submitted by donbermoy on
ListBox is a control that displays a collection of items. More than one item in a ListBox is visible at a time. You can either populate the ListBox control directly, or bind it to a collection of items. In this tutorial, i will discuss some events in ListBox such as adding and removing an item in a ListBox. So, now let's start this tutorial! 1.

How to know if Email is Valid or Not in VB.NET

Submitted by donbermoy on
Hi! this is donbermoy again! :) For now i will teach you how to code for the validation of email address when you input it. Email address has two parts namely the local part of the address which is the part before the @ sign, and the domain name in which the email message will be sent. 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.

SchoolWebTech

Submitted by Engineer Jacks… on
School Web Tech is my project created in PHP/mysql. It is a multipurpose school management software that can be used by various schools worldwide for all administration, management and learning related activities. It can be used to manage students, teachers, employees, subjects, teachers and students payments, attendances, grading and all the system and process related to running school

ComboBox Control

Submitted by donbermoy on
ComboBox Control allows the user to select an item from a drop-down list or optionally to enter new text in the text box of the control. ComboBox can contain a collection of objects of any type (such as String, or Image.). In this tutorial, we will discuss how to add and remove an item in a ComboBox. So, now let's start this tutorial! 1.

How to compute Date Difference in VB.NET

Submitted by donbermoy on
In this article, i will introduce another some twist of the Date Function in VB.NET. I haven't posted for two days because of I was tasked to be a panelists for the Thesis Defense in Computer Engineering.But now I'm back! Hurray! haha :D So, now let's start this Date Difference 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.

Add/Update/Delete Data in MySql Using PHP jQuery UI Dialog Box & Bootstrap

Submitted by TPOAN on
Dear friends, I would like to share all of you with my wonder technical of using Jquery Dialog box to add/update/delete data and I really appreciated with Sourcecodester.com that allow us to share it as global. I am IT Officer of Local Project in Cambodia. If you have any problem, please contact me as [email protected] or via my facebook account http://www.facebook.com/TouchPoan or my blogspot

C++ Tutorial: Change the back color of the form using Color Dialog component

Submitted by Bright777 on
   In this tutorial we will learn some useful things about Color Dialog component in C++/CLI and make some practice. We will write a simple program, which will change the back color of the main form of our application. Also we will do some magic with buttons of this dialog :). So, let`s begin. Preparations    First of all you need to start a new Windows Forms Application project and put on it control called button. Then find the Color Dialog control. It situated in the group of controls called “Dialogs” and drag it on the form.