code for student feedback surveyin java by using swing
#1

request for student feedback system project....
Reply
#2

import javax.swing.*;

class MyFirstSwingProgram {
JFrame frame;

public static void main(String[] args) {
MyFirstSwingProgram gui = new MyFirstSwingProgram();
gui.go();
}

public void go() {
frame = new JFrame("My first java program"); //this is the frame
//to end the program when the window is closed
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JLabel label = new JLabel("I'm a Label"); // create a label
JButton button = new JButton("I'm a button. Click me"); //create a button

frame.add(label); //adding the label to the frame
frame.add(button);
frame.setSize(300,300); //setting the size of the frame
frame.setVisible(true); //make the frame visible
}
}
Java Swing Button
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: java code for registration form using swing, feedback system java, student feedback system project in java, student feedback system sourcecode in java, student register form using swing with jdbc connection, java project on student feedback, student feedback form java swing,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  simple java rmi chat application source code 2 19,211 20-07-2018, 12:08 PM
Last Post: Guest
  authentication schemes for session passwords using color and images project source code 2 2,238 03-02-2018, 09:35 AM
Last Post: Nischithnash
  student database management with attendance and internal marks 3 1,363 18-09-2017, 11:43 AM
Last Post: jaseela123d
  free download source code for online movie ticket booking in java 2 18,722 15-08-2017, 03:21 PM
Last Post: Morshed
  source code for rsa encryption and decryption in java 2 8,020 29-05-2017, 04:21 PM
Last Post: Meghna Jadhav
  source code for task scheduling using genetic algorithm using java 2 8,531 11-04-2017, 08:31 PM
Last Post: Guest
Thumbs Up source code of online payment system using steganography and visual cryptography 3 8,512 06-04-2017, 09:56 AM
Last Post: jaseela123d
  source code for student final year online clearance system 3 1,175 24-02-2017, 04:11 PM
Last Post: jaseela123d
  code to extract brain tumor detection using matlab 2 1,067 17-10-2016, 04:32 PM
Last Post: girish123ak
  color image segmentation using jseg algorithm in matlab code 2 867 29-09-2016, 12:07 PM
Last Post: Guest

Forum Jump: