C++ Tutorial: Make Simple Picture Viewer

   In this tutorial we will make a simple program called “Picture viewer”. This program will open a selected picture or image and it will be shown on the main form of the program. In the process of coding of this program we will use Open File Dialog component and Picture box component. Preparation    First of all you need to create a new “Windows Forms Application” project. Then you need to put a Picture box component and Button component on the form. After that you also need to add Open File Dialog to the project.

Hotel Reservation Version 1.0 Complete Package Using Ajax, Bootstrap, Jquery, and Object C For Advance Trapping

1. Create database "kingsfields_database". 2. Import the kingsfields_database.sql file.(or run all sql query which is in "kingsfields_database.sql" file) 3. Edit the connect.php file with your config.(which is in session folder). [database username, password, host, database] 4. Administrator username: admin / password: admin 5. To log-in client reserved of make an transactions 1st ang log-in ur

C++ Tutorial: Change the Color and the Font of the Label

   In previous tutorial we have changed the background color of our main form. Today we are going to continue learning Dialog components. In this tutorial we will change the font of the label using Font dialog component and the color of the text using Color Dialog, which we used in previous tutorial. Preparations    The view of form is very simple. It consists of a label control and two button controls. First button will modify the font of the label and the other will modify the foreground color of the same label.

Acquire Computer Drive

Hi! This is my tutorial entitled "Acquire Computer Drive using VB.Net". Sometimes we have require to get the drives of our computer, but this tutorial gets the list of available drives in ListView. 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.

RadioButton Control in VB.NET

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

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.

ListBox Adding and Removing an Item in VB.NET

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

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.