JWindow and JFrame Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a JWindow and JFrame Component in Java. We will first differentiate the two components. The JFrame can be a container of other components, has title and border, and has buttons for minimize, maximize, and close. Unlike JFrame, a JWindow can also hold other components but it has no title and border, and no minimize, maximize, and close button. So, now let's start this tutorial! 1.

Pick Up Keyboard Input in Javascript

Submitted by GeePee on
This project will teach you how to pick up keyboard using javascript. Once the user press the key, it will display what key has been pressed and its keycode. It can also detect keyboard properties. You will notice that when the user press the key and hold, it has a status onkeydown event for whatever key user pressed and on released, it changes to onkeyup event. This is very useful in creating

JToolBar Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a JToolBar in Java. A JToolBar provides a bar on the top of the program where it contains a group of components such as buttons, icons, labels, textfields, etc., that provide easy access to functionality of the other components. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jToolBarComponent.java. 2.

JOptionPane Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a JOptionPane Component in Java. A JOptionPane lets the program pop up a dialog box that will let the user informs something. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jOptionPaneComponent.java. 2. Import the javax.swing.* package to access the JOptionPane class.

JScrollPane Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a JScrollPaneComponent in Java. A JScrollPane implements scrollable view of a component that lets the user display a component that is large or one whose size can change using scrollbars. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jScrollPaneComponent.java. 2.

JSplitPane Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a JSplitPane Component in Java. A JSplitPane is used to let the user divides the two components that can also be resized by the user. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jSpliPaneComponent.java. 2.