jQuery Tabs

Submitted by GeePee on
This project will teach you how to create a simple jquery tabs using jquery and css. I used fragment identifier this.hash for the href values in the navigation. this.hash is equivalent to #about, #faqs and #contact. By clicking each tab, the older vissible tab will be hidden and the new tab will show. Hope you learn from this.

Functions in Java

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create and use methods in Java. What's a Method: A method is similar to what you may call a function in other languages. Well, actually, it's exactly the same. A function, or a method, is a script which can be called from other scripts in order to run some code, and return a value. The only difference between a function and a method, is that methods are the name given to functions in an Object Oriented Programming (OOP) language, such as Java.

Rating System

Submitted by GeePee on
This is a rating system using jquery and php. The user has an option to choose what rate he/she wants to give on the page. Then, it automatically gets the average page rating. I also used Jrating jquery plugin in creating ajax star rating to configure the corresponding page rate. Hope you learn from this.

Exception Handling in C++

Submitted by moazkhan on

Exception Handling in C++

In this part you will learn: 1. What is an exception? 2. How using exception is useful? 3. How to use exception in a Program? 4. C++ syntax What is exception? In a class there arise many errors, depending upon the type of program handling these errors can be critically important sometimes. Exceptions is the way through which we handle the errors in a class using object oriented approach. Exceptions can occur due to many reasons like if the system has run out of memory or the object is initialized to impossible values.

How To Build a Stub in Visual Basic .NET

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a stub in Visual Basic .NET. Builder: This is a follow on tutorial from my previous tutorial on how to create a builder in Visual Basic .NET which allows a user to input custom settings to their liking in to an application (the builder) which will then put those settings via the controls (textbox and checkbox in that example) in to the generated stub.

Polymorphism in C++

Submitted by moazkhan on

Polymorphism in C++

In this part you will learn: 1. Polymorphism 2. C syntax 3. Showing output In this tutorial I will teach you about the concept of Polymorphism in C++. What is a Polymorphism? Polymorphism enables to write programs that process objects of classes (that are part of the same hierarchy) as if they are all objects of the hierarchy’s base class.

Sales and Inventory System (Food's Shop)

Submitted by Raj.Sharma on
This Sales and Inventory System is developed using VB.NET and using MS Access 2010 database in the back end. Main Features are: 1. Customers and Suppliers Management 2. Orders Processing 3. Inventory Management 4. Sales Management 5. Invoice Management 6. Low Stock Indicator 7. Advance Records Searching 8. Advance Reports Login Information : Username - admin Password - 12345 Requirements - Visual

Function Templates in C++

Submitted by moazkhan on

Function Templates in C++

In this tutorial you will learn: 1. What are templates? 2. Why to use function templates? 3. How to use template functions in a program? 4. Basic C++ syntax What are templates? Sometime we have a function in which we need to have different data types of input on which we have to perform some operations, this function would obviously return some value.

How to Fill and Get the Value Member of a ListBox in Visual Basic 2008 and MS Access Database

Submitted by janobe on
This time, I’m going to teach you how to fill and get the value member of a ListBox by using Visual Basic 2008 and MS Access Database. With this tutorial, you can fill the data to the ListBox that came from the Database and get its Id by clicking the name that shows in the ListBox. Let’s begin: Open the Visual Basic 2008 and create a new Windows Form Application. Drag a button and a ListBox in the Form.