Skip to main content

Jframe Form Designing sample

Advance JAva-Jframe Form Designing sample Code




import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Color;



public class Sample extends JFrame 
{
public Sample()
{
    setTitle("Home");
  
 
getContentPane().setBackground(Color.orange); 
     setSize(300,200);
     setLayout(null);
  
  
  setDefaultCloseOperation(EXIT_ON_CLOSE);
 
   setLocation(100, 100);
 
      
 
  JLabel l0=new JLabel("Registration");
       l0.setBounds(10,0,100,20);
  add(l0);
 JLabel l1=new JLabel("Enter Name");
 l1.setBounds(30,20,100,20);
 add(l1);
     JTextField textFieldUserName = new JTextField(50);
    textFieldUserName.setBounds(110,20,60,20);
      add(textFieldUserName);
   
   
      JButton b1=new JButton("Click Me");
 b1.setBounds(30,100,100,20);
 add(b1);
  
  
    JLabel l2=new JLabel("Select city");
 l2.setBounds(30,50,100,20);
 add(l2);
  
  JComboBox c1=new JComboBox();
  c1.addItem ("pune");
   c1.addItem ("Nagar");
c1.addItem ("Nasik");
 
c1.setBounds(110,50,100,20);
 add(c1);
   
   
     
      setVisible(true);
 




}


public static void main(String s[])
{
Sample obj=new Sample();

}

}

Labels

Show more

Popular posts from this blog

Calculator Program using jFrame

Calculator Program using jFrame java swing calculator example java jframe calculator source code java code for simple calculator using gui how to make a calculator in advance java using JFrame simple calculator program in java using frame simple calculator program in java source code write a code to create simple calculator using swing component import javax.swing.*; import java.awt.event.*; public class TextFieldExample extends JFrame implements ActionListener{     JTextField tf1,tf2,tf3;     JButton b1,b2; //declaration of control     TextFieldExample(){         JFrame f= new JFrame("Button click demo"); //         tf1=new JTextField();         tf1.setBounds(50,50,150,20);         tf2=new JTextField();         tf2.setBounds(50,100,150,20);         tf3=new JTextField();       ...

Java Program to delete record using JFrame and Prepaired Statement

Java Program to delete record using JFrame and Prepaired Statement Here is table Design  Create table demo using two column as id  and Dname , id is primary key  Program source code  +import javax.swing.*;   import java.awt.event.*;   import java.sql.*; public class FrameDelete extends JFrame implements ActionListener{       JTextField tf1,tf2,tf3;       JButton b1,b2;   JLabel l1,l2; Connection con;    PreparedStatement psmt;   int result; //declaration of control    FrameDelete(){           JFrame f= new JFrame("InsertDemo");   // l1=new JLabel("Enter RollNo"); l1.setBounds(150,10,150,50);         tf1=new JTextField();           tf1.setBounds(150,50,150,20);   tf3=new JTextField();           tf3.setBounds(1...

Basic java

java java java, learn java online free, classroom java tutorial, beginners java, java beginners, java programming,  basic java , basic java Tutorial,  basic java  Assignment           Hello friends ,       I am learning Basic java . my motive behind this blog is to help those want to learn Basic java online free of cost and grab each and every basic aspect of java programming .     you can find java tutorial from basic on this blog i will post each and every assignment of basic java with source code .          we will divide our course  in to Day work .          Let's start Day One  Basic Java Assignment for  Beginners      Basic Requirement to learn Java Programming Download following software             1. Text Editor (Notepad, Notepad++, Edit pad, Eclipse...