swing

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.

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.

JTextField Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that has the JTextField Component using Java. The JTextField is a basic text control component that enables the user to type a small amount of text. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jTextFieldComponent.java. 2.

JLabel Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that has the JLabel Component using Java. The JLabel lets the user display a short text string or an image, or both. You cannot input a text on JLabel and cannot have the keyboard focus on it. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jLabelComponent.java. 2.

JList Component in Java

Submitted by donbermoy on
This is a tutorial in which we will going to create a program that will have a JList Component in Java. A JList is a component that displays a list of objects and lets the user select one or more items that is displayed in one or more columns, to choose from. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jListComponent.java. 2.