Customized Scrollbar in CSS

Submitted by GeePee on
This project will teach you how to customize a scrollbar using css. We can use this on webpage that has a large content. Scrollbar can be customize based on our preferred design. Scrollbar has different structures like button, track, thumb etc. Buttons can be clicked to increment or decrement the selection(mine has set to none). Track is the area where you can move the thumb. And thumb which is

KeyStroke/KeyPress in Java

Submitted by donbermoy on
This tutorial will teach you how to create a program in java that has a KeyPress or KeyStroke. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of keyStroke.java. 2. Import the following package library: import java.awt.event.*; // used to access the ActionEvent clas import javax.swing.*; //used to access the AbstractAction,Action,ActionMap

Undo Text using Ctrl Z in Java

Submitted by donbermoy on
This tutorial will teach you how to create a program that can undo a text using a shortcut key of ctrl+z in java. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of undoCtrlZ.java. 2. Import the following package library: import java.awt.event.*; //used to access ActionEvent class import javax.swing.*; //used to access AbstractAction,JFrame

Inventory System in C#

Submitted by janaka attanayaka on
I've created this application to create invoices, inventory maintenance, work report for micro wave installation company. In this program, you can get idea about how to make trial application, work with windows registry and how to make text to speech application. Thank you for Downloading JS143.. Hope you'l like it.. 1. Install JS143. 2. Create New Database name "innowave", 3. Import "Innowave.sql

Automatically Convert String to Upper Case in Javascript

Submitted by GeePee on
This project will teach you how to convert string to upper case automatically using javascript. We can use these if we have a textfield requirements to capitalized all inputted data or just the first letter of the word. It is more convenient for the users while inputting data at the same time we can make sure that it meets system requirements. Hope you learn from this.