Projects Monitoring System

Submitted by Engineer Jacks… on
A simple application for monitoring a given company's projects.. IT SOLVES THE FOLLOWING PROBLEMS 1.Problem of keeping projects information 2.Difficulty of keeping track of projects schedules 3.Difficulty of keeping track of how resources are being used during project implementation 4.Difficulty to receive notifications about different projects 5.Difficulty in generating projects reports The

Static Data Members

Submitted by Muzammil Muneer on

Static data members

In this part you will learn: 1. What is static data member? 2. Where static data members are used? 3. Syntax of Static data members 4. Writing program with Static data members 5. Showing output Static data member Static data members are those data members which retain their values, i.e. Static data members store the latest value in them so that the value will be used for next time when the function that makes use of static data member is called.

How To Read XML File In PHP

Submitted by thusitcp on
Most of web applications handling lot of different kind of data sources in order to provide excellent service to its visitors. Application need properly define and fast feeding data sources to maintain quality of service. XML is one of leading data source which is used to provide various kind of services such as webservice, RESETFull service, RSS feeds and etc. In this tutorial I will teach you

Copy Constructor

Submitted by Muzammil Muneer on

Copy Constructor

In this part you will learn: 1. What is copy constructor? 2. Usage of copy constructor 3. Syntax of Copy Constructor 4. Writing program with copy constructor 5. Showing output Copy Constructor A copy constructor is a special constructor that initializes a new object from an existing object.

Changing Image Source in Javascript

Submitted by GeePee on
This project will teach how to change image source using basic javascript code. onClick event, image will automatically change. Here's the full code. var img_tracker = 'chrome'; function changeImg(){ var image = document.getElementById('browser'); if(img_tracker == 'chrome'){ image.src = 'images/firefox.jpg'; img_tracker = 'firefox'; }else{ image.src = 'images/chrome.jpg'; img_tracker = 'chrome';

Constructor and Destructor

Submitted by Muzammil Muneer on

Constructor and Destructor

In this part you will learn: 1. What are Constructor and Destructor? 2. Types of Constructor 3. Syntax of Constructor and Destructor 4. Writing program with constructor and destructor 5. Showing output Constructor Constructor is a function of the class which is called at initialization or declaration of an object. To initialize values to the members of the function we use this function.

LINQ With Data Source ( MSSQL To LINQ )

Submitted by thusitcp on
My previous tutorial I have described basic of LINQ and how to dealing with XML files. In this tutorial I am going to explain you how to deal with rational data sources. In this tutorial you will be understand how does LINQ help us dealing with non-object oriented data structures like dealing with rational data. Here we are going to connect SQL Server database and going to create SQL to LINQ data

Google Chrome Logo in HTML/CSS

Submitted by GeePee on
This project will teach you how to create a logo of Google Chrome using raw css and html. Google Chrome logo has only 5 parts which I named it as circle(which is the white bigger circle in the center of the logo), center(the blue center circle), red, yellow and green. This is very cool css tricks. Hope you learn from this.

Setters And Getters

Submitted by Muzammil Muneer on

Setters and Getters

In this part you will learn: 1. What are setters and getters? 2. Why we need setters and getters? 3. Program using setters and getters 4. Showing output What are Setters and Getters? As the name suggests, setters are functions used to set values whereas getters are used to get values. Setters and getters functions are usually public data members of the class. Setters and getters are used for private or protected member variables.