Detecting Unsaved Work in Javascript

Submitted by GeePee on
This project will teach you how to trap your user with an unsaved work. It has only few lines of code in javascript. If the user has unsaved work and application that is not completed and attempt to close the window, the pop up message will appear asking if you want to leave the page or stay on the page. Simple yet very useful. Hope you learn from this.

Easy Excel Bookkeeping

Submitted by nostradamus1566 on
Instant Excel bookkeeping without any macros or VBA code. For bookkeeping beginners There are two sheets in this workbook: Ledger and TrialBalance. The Ledger sheet is arranged in the traditional T format for double entry bookkeeping. The TrialBalance sheet calculates its results from the Ledger sheet. This excel workbook is just a teaching aid to help students understand how debits and credits

GridLayout as Layout Manager in Java

Submitted by donbermoy on
This tutorial is about the GridLayout as Layout Manager in Java. A GridLayout is a layout where it has a grid within a component. This layout ignores the sizes of the component and resizes them fit the cell's dimension of the grid. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of gridLayout.java. 2.

FlowLayout as Layout Manager in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a FlowLayout as Layout Manager in Java. A FlowLayout as a layout manager provides a layout that is simple and used as default by the JPanel. It makes it every component seen according to its preferred size and arranges them in horizontal wrapping lines so that they will have spacing. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of flowLayout.java. 2.

Advanced Guest House Management System

Submitted by Raj.Sharma on
This project is written using VB.NET and MS access 2010 as back end... I developed this project for Ashok Guest House Gujarat India Main Features are: 1. Guest House Reservation. 2. Restaurant Billing. 3. Guests Orders Management. 4. Stock Management. 5. Advanced records searching Facility, Advanced reports. 6. Inventory Management and many more. Facility to work on many PC's using LAN

BorderLayout as Layout Manager in Java

Submitted by donbermoy on
This tutorial is about the BorderLayout as Layout Manager in Java. A BorderLayout is a layout where it has a rectangular screen area divided into five regions - North, South, East, West, and Center position regions. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of borderLayout.java. 2.

How to Create a Splash Screen in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a Splash Screen in Java. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of splashScreen.java. 2. Import the following packages: import java.awt.*; //used to access the Color, Dimension, and Toolkit class import javax.swing.*; //use the JWindow and JLabel class 3