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.

Validate Decimal Number in Javascript

Submitted by GeePee on
This project will teach you how to validate decimal number in javascript. It is important to validate first the input data before submitting. The user must meet the requirements to be able to proceed with the next procedure. There are textfield which requires numbers only, so we have to block the non-numeric characters to avoid errors. Hope you learn from this.