How to create a Frame in java

BIT0112-Rokon at 15h40
07
Jun
2010
How to create a Frame in java

Today I wanna show you how to create a frame and how to manage it in
Java. It is quite simple. There is a class named JFrame in JDK. Now we
just use it. So let us see an example given bellow.
package com.rokon.tutorial;
import javax.swing.JFrame;
public class MyFrame {
public static void main(String[] args) {
JFrame frm = new JFrame(); // instance of JFrame named frm
frm.s
About
This topic belongs to the forum
  • IT based community for everyone, managed by the students of Institute of Information Technology(IIT), University of Dhaka.

  • Numbers of topics : 2170
  • Numbers of messages : 11613
  • Numbers of users : 1941
  • Numbers of points : 310
Similar topics
Here is code For Show date and time in JFrame: Code: import java.awt.Font; import java.text.DateFormat; import java.text.SimpleDateFormat; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; public clas
How can I set an image as the background of a frame in Java????? Please help somebody
Suppose, I have given inputs in a window(like textfield, textarea, combobox etc.). Based on the information I need to write something in a .pdf file. How can I do it? Please reply me quickly.
What is the American frame of mind? I would say that a culture consists of the complex of ideas that a group of people hold dear. One can speak of the culture of a small group or of a very large group. In the United States our culture is determined
Guys today I wanna show you a form processing system in spring framework. This is fairly simple and easy. In this tutorial you will find - how to submit a form how to validate a form how to view the submitted data how to validate an email how to
Forums from same category
  • Biology student board

  • Belajar Bahasa Arab Online. Mari Belajar Bahasa Arab

  • A less rigid science forum and other topics, including news.

  • A place for students from far and wide to discuss minor issues to major panics whilst away from home for the first time! From being constantly on edge to doubting if your housemates like

  • A forum dedicated for Sillimanians. Sillimanian 'Ko Forum

  • Virtual University Of Pakistan

See also
more_less
Informations

1 Replies For the topic :
"How to create a Frame in java"

This topic has been viewed 430 times.

Last message :
07/06/2010 at 15h40 by "BIT0112-Rokon"