Image Mapping in HTML

Submitted by GeePee on
This project will teach you on how to image map using html. This is easy and simple project. Image mapping has the ability to hyperlink areas of the image to multiple destination. Just like my example, I have one image with with 6 boxes which contains different browser in each box. I set the coords of each box and link to it's preferred destination. The first 2 figures of the coords is the x, y

Binary Search Tree in C++

Submitted by moazkhan on

Binary Search Tree in C++

Note: We will use BST as abbreviation for binary search trees. Code is given with the tutorial separately for thorough understanding. In this tutorial, you will learn 1. About the data members of class of BST. 2. Implementation of constructor of BST. 3. Implementation of function to check whether BST is empty. 4. Implementation of function to insert a node in BST. What are the data members of BST? The class of Binary search tree has only one data member which is a pointer to the node of BST. It is named as root.

Billing System using Java

Submitted by Gauravtripathi on
For using this program, you have to create the DNS under control panel. Follow some steps below to create a DNS. 1. copy database any drive 2. open control panel....administrative tool.... DATA SOURCE (odbc) 3. click add button...then click on "microsoft access driver(.mdb,.accdb)" 4. click select....then choose drive where is ur database.. 5. select Billing_System.... 6. then give name as Billing

Drawing Strings via the Graphics Object in C#

Submitted by Yorkiebar on

Introduction:

This tutorial is on how to draw text in .NET (C#/Visual Basic).

Labels, Textboxes?

I'm sure if you've not looked in to the 'graphics' (etc) objects in the .NET framework, you're thinking, why don't we just use labels or textboxes with their read-only property enabled. Labels and textboxes both have a surrounding area around the text which are both of different colours (however we could change this to the form background colour to give the effect of the backgrounds being removed), but would we create extra controls (labels, and textboxes) when we don't need to?

Trees in C++

Submitted by moazkhan on
Trees in C++ Now, we know the basics of efficiency analysis and if I find some space in tutorial, efficiency calculation will be discussed but mean while, it is very important to cover other important data structures.

How To Use a REST API in PHP

Submitted by Yorkiebar on
Introduction: This tutorial is on how to use an API in PHP. What Is An API? An API is an Application Programming Interface and is used as a middle stepping stone for external applications to use the functions of an internal application. An example of this would be the Skype API. The Skype API allows external applications on the users computer to access their Skype account via the Skype4ComLib API. REST API: There are a few different types of APIs, we'll be using an example REST in this tutorial.