updated with current date n time

updated with current date n time

package LvFrm;
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ItemEvent;
import java.awt.event.ItemListener;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.JButton;


@SuppressWarnings("serial")
public class Check extends JFrame implements ActionListener,ItemListener
{  

    //class declaration

    JFrame frm;
    JLabel lbl1,lbl2,lbl3,lbl4,lbl5,lbl6,lbl7,lbl8,lbl9,lbl10,
    lbl11,lbl12,lbl13,lbl14,lbl15,lbl16,lbl17,lbl18,lbl19,lbl20;
    JTextField txf1,txf2,txf3,txf4,txf5,txf6,txf7,txf8,txf9,txf10;
    JPanel panel1,panel2,panel3,panel4;
    Font f1;
    JComboBox i1,j1,k1;
    JButton b1,b2;

    //for date month year entry

    String strD[]={"Day","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31"};
    String strM[]={"Month","Jan","Feb","Mar","App","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
    String strY[]={"Year","2012"};
        Check()
    {
        //for font setting

        f1=new Font("",Font.BOLD,25);
        this.setLayout(null);

        //frame declaration

        JFrame frm=new JFrame("first project");
        frm.setSize(650,400);
        frm.setLayout(null);

        /*Icon i=new ImageIcon("file:\\C:\\Documents%20and%20Settings\\All%20Users\\Documents\\My%20Pictures\\Sample%20Pictures\\Sunset.jpg");
        //.setIcon(new ImageIcon("C://Documents and Settings//smart vision//Desktop"));

        JLabel image=new JLabel(i);
        image.setBounds(100,100,125,120);
        frm.add(image);
        */

        lbl1=new JLabel("JOB WORK CENTRAL");
        lbl1.setBounds(235,10,135,35);
        frm.add(lbl1);
        lbl2=new JLabel("Home Shop ");
        lbl2.setFont(f1);
        lbl2.setBounds(220,30,330,40);
        frm.add(lbl2);
        lbl3=new JLabel("Mfrs. of :Baby Tricycles,Jhula,Walker,Rides,Accessories,"); 

        lbl3.setBounds(130, 20, 450, 100);
        frm.add(lbl3);

        lbl4=new JLabel (" Corrugated Box,Rolls,Sheets & Packing Materials");
        lbl4.setBounds(150, 30, 450, 105);
        frm.add(lbl4);

        lbl5=new JLabel("B39/4,SITE-IV,SAHIBABAD INDUSTRIAL AREA,,GAZIABAD(U.P)201010");
        lbl5.setBounds(100, 40, 480, 145);
        frm.add(lbl5);

        lbl6=new JLabel("Job Work :All Kinds Of Powder Coating Items");
        lbl6.setBounds(160, 30, 465, 135);
        frm.add(lbl6);

        lbl7=new JLabel("TIN NO:09888807951");
        lbl7.setBounds(10,10,125,30);
        frm.add(lbl7);

        lbl8=new JLabel("Dated 3-7-2008");
        lbl8.setBounds(10,20,135,40);
        frm.add(lbl8);

        lbl9=new JLabel("Customer Mob No-");
        lbl9.setBounds(10,80,135,90);
        frm.add(lbl9);

        //m/s label & textfld

        lbl10=new JLabel("M/s.");
        lbl10.setBounds(35,105,135,110);
        frm.add(lbl10);

        txf1=new JTextField();
        txf1.setBounds(70, 150, 130, 25);
        frm.add(txf1);

        //address label & textfld

        lbl11=new JLabel("Address");
        lbl11.setBounds(10,150,135,110);
        frm.add(lbl11);


        txf2=new JTextField();
        txf2.setBounds(70, 190, 130, 30);
        frm.add(txf2);

        //book no label & textfld

        lbl12=new JLabel("Book NO");
        lbl12.setBounds(250,105,80,110);
        frm.add(lbl12);

        txf4=new JTextField();
        txf4.setBounds(300, 150, 32, 20);
        frm.add(txf4);
        //sr no label n textfield

        lbl13=new JLabel(" Sr No");
        lbl13.setBounds(330,105,40,110);
        frm.add(lbl13);

        txf5=new JTextField();
        txf5.setBounds(364, 150, 40, 20);
        frm.add(txf5);

        //transport label & textfld

        lbl16=new JLabel(" Transport");
        lbl16.setBounds(245,150,70,145);
        frm.add(lbl16);

        txf6=new JTextField();
        txf6.setBounds(315, 212, 80, 25);
        frm.add(txf6);

        //g.r no label & textfld

        lbl17=new JLabel(" G.R No.");
        lbl17.setBounds(430,150,70,145);
        frm.add(lbl17);

        txf7=new JTextField();
        txf7.setBounds(480, 212,100, 25);
        frm.add(txf7);

        //creating button & adding to Frame

        b1=new JButton("Add");
        b1.setBounds(220,270,70,20);
        frm.add(b1);
        b1.addActionListener(this);


        b2=new JButton("Print");
        b2.setBounds(300,270,80,20);
        frm.add(b2);

        //panel1 declaration

        panel1=new JPanel();
        panel1.setLayout(null);
        panel1.setBounds(5, 10, 600,130);
        Border b1= BorderFactory.createLineBorder(Color.darkGray);
        panel1.setBorder(b1);
        frm.add(panel1);

        //panel2 declaration

        panel2=new JPanel();
        panel2.setLayout(null);
        panel2.setBounds(5, 140, 600,100);
        Border b2= BorderFactory.createLineBorder(Color.darkGray);
        panel2.setBorder(b2);
        frm.add(panel2);

     /*for date entry & adding date into panel 2
       also addind panel into frame
        */

        lbl14=new JLabel("Date");
        lbl14.setBounds(400,10,30,20);
        frm.add(lbl14);
        panel2.add(lbl14);

        i1=new JComboBox(strD);
        i1.setBounds(430, 10, 50, 20);
        i1.addItemListener(this);
        frm.add(i1);
        panel2.add( i1);
        j1=new JComboBox(strM);
        j1.setBounds(480, 10, 60, 20);
        j1.addItemListener(this);
        frm.add(j1);
        panel2.add(j1);
        k1=new JComboBox(strY);
        k1.setBounds(540, 10, 60, 20);
        k1.addItemListener(this);
        frm.add(k1);
        panel2.add(k1);

        /*time of removal goods label & text field &
         * adding it to panel2
         */

        lbl15=new JLabel("Time Of Removal Of Goods");
        lbl15.setBounds(245,30,170,30);
        frm.add(lbl15);
        panel2.add(lbl15);

        txf3=new JTextField();
        txf3.setBounds(425, 35, 170, 25);
        frm.add(txf3);
        panel2.add(txf3);

    frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frm.setVisible(true);

    }

    //main 
    public static void main(String args[])
    {
        new Check();
        new bean();
        new Conn(); 
    }

    @Override
    public void itemStateChanged(ItemEvent arg0) {
        // TODO Auto-generated method stub

    }

    @Override
    public void actionPerformed(ActionEvent arg0) {
        // TODO Auto-generated method stub

    }

    }
View Answers

April 3, 2012 at 4:41 PM

import java.sql.*;
import java.awt.*;
import java.util.*;
import java.text.*;
import javax.swing.*;
import java.awt.event.*;

public class GetDate{
    static String months[]={"Month","Jan","Feb","Mar","App","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
    static int getMonth(String month){
    for(int i = 0; i<12; i++) {
      if(month == months[i])
          return i;
    }
    return 0;
    }
public static void main(String args[]){
GetDate get=new GetDate();
}
public GetDate(){
JFrame f = new JFrame();
f.getContentPane().setLayout(null);
final JComboBox day=new JComboBox();
final JComboBox month=new JComboBox();
final JComboBox year=new JComboBox();
JButton button= new JButton("Submit");
day.addItem("Day");
year.addItem("Year");
for(int i=1;i<=31;i++){
day.addItem(i);
}
day.setBounds(10,10,10,10);
for(int j=0;j<months.length;j++){
month.addItem(months[j]);
}
for(int k=1980;k<=2012;k++){
year.addItem(k);
}
day.setBounds(50,50,60,20);
month.setBounds(120,50,80,20);
year.setBounds(210,50,60,20);
button.setBounds(50,80,100,20);
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
Object ob1=day.getSelectedItem();
Object ob2=month.getSelectedItem();
Object ob3=year.getSelectedItem();
int d=Integer.parseInt(ob1.toString());
String mon=ob2.toString();
int m=getMonth(mon);
int y=Integer.parseInt(ob3.toString());
Calendar cal = GregorianCalendar.getInstance();
cal.set(y, m-1, d);  
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
System.out.println(sdf.format(cal.getTime()));
}
});
f.add(day);
f.add(month);
f.add(year);
f.add(button);
f.setVisible(true);
f.setSize(300,200);
}
}

April 3, 2012 at 4:42 PM

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

public class GetDOB{
public static void main(String args[]){
GetDOB get=new GetDOB();
}
public GetDOB(){
JFrame f = new JFrame();
f.getContentPane().setLayout(null);
final JComboBox day=new JComboBox();
final JComboBox month=new JComboBox();
final JComboBox year=new JComboBox();
JButton button= new JButton("Submit");
for(int i=1;i<=31;i++){
day.addItem(i);
}
day.setBounds(10,10,10,10);
for(int j=1;j<=12;j++){
month.addItem(j);
}
for(int k=1900;k<=2010;k++){
year.addItem(k);
}
day.setBounds(50,50,40,20);
month.setBounds(100,50,40,20);
year.setBounds(150,50,60,20);
button.setBounds(50,80,100,20);
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
Object ob1=day.getSelectedItem();
Object ob2=month.getSelectedItem();
Object ob3=year.getSelectedItem();
int d=Integer.parseInt(ob1.toString());
int m=Integer.parseInt(ob2.toString());
int y=Integer.parseInt(ob3.toString());

try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root";, "root");
PreparedStatement pstmt = conn.prepareStatement("insert into d(myDate) values(?)");
java.sql.Date sqlDate = new java.sql.Date(y-1900,m-1,d);
pstmt.setDate(1, sqlDate);
pstmt.executeUpdate();
JOptionPane.showMessageDialog(null,"Date in inserted successfully");
}
catch(Exception ex){}
}
});
f.add(day);
f.add(month);
f.add(year);
f.add(button);
f.setVisible(true);
f.setSize(300,200);
}
}









Related Tutorials/Questions & Answers:
updated with current date n time
updated with current date n time  package LvFrm; import...; //for date month year entry String strD[]={"Day","1","2","3","4","5...); frm.add(txf4); //sr no label n textfield lbl13=new JLabel
date format to be updated with current date time
date format to be updated with current date time  package LvFrm...; JButton b1,b2; //for date month year entry String strD[]={"Day","1..., 32, 20); frm.add(txf4); //sr no label n textfield
Advertisements
javascript current date and time.
javascript current date and time.  How can we display current date... with current day,date,time and GMT.You can have your own format...;Current date and time</title> </head> <script type="text/javascript
J2ME Current Date And Time
J2ME Current Date And Time     ... the current date and time on the screen. Like core Java J2ME too use the same  java.util package to show the current date as well as current time on the screen
Get current Date and Time
Get current Date and Time In this section we will discuss about how to get current date and time in java. Java provide two classes, Date and calendar which will display the current date and time in java. SimpleDateFormat is used 
Iphone Show Current Date & Time
Iphone Show Current Date & Time In the previous examples, we have printed current date and time separately in iphone simulator. But in this example we are going to show you how to print both current date and current time in iphone
JDBC: Get current Date and Time Example
JDBC: Get current Date and Time Example In this section, you will learn how to get current Date and current time using JDBC API. Get current Date and Time... are selecting current date and current time by using MySql methods CURDATE
How can we get second of the current time using date function?
How can we get second of the current time using date function?  How can we get second of the current time using date function
Mysql Date and Time
; Mysql Date and Time is used to return the current date and time... Mysql Date and Time. To grasp this example, we use  Current_Timestamp query that return the current date and time. CURRENT_TIMESTAMP:-This is used
Write an Applet which display current date and time on the web page??
Write an Applet which display current date and time on the web page??  Write an Applet which display current date and time on the web page??  Here is an applet code that display date and time. import java.applet.
Write an Applet which display current date and time on the web page??
Write an Applet which display current date and time on the web page??  Write an Applet which display current date and time on the web page?  Here is an applet code that display date and time. import java.applet.
Mysql Date no Time
; Mysql Date no Time is used to find out the current date with no time... no Time' in Mysql . In this Example, the date(now( ) ) return you the current date  with no time. date(now( ) ) : The date(now( ))  return you the current
Current Date and Time
Current Date and Time
date format updated
date format updated  package LvFrm; import java.awt.Color; import... panel1,panel2,panel3,panel4; Font f1; JComboBox i1,j1,k1; JButton b1,b2; //for date...(txf4); //sr no label n textfield lbl13=new JLabel(" Sr
C Current Time
to the current date and time. The printf() function then prints the current date... C Current Time       In this section, you will learn how to get the current time in C. 
date_time_set
date_time_set date_time_set alias DateTime::setTime function resets the the current time of the DateTime object to a different time. It returns the modified date and time.  Syntax public DateTime DateTime::setTime ( int
convert current date into date format
convert current date into date format  How to get current date and convert into date format in Java or PHP
Current date in php
Current date in php  How to show the current date in the HTML page using PHP Script
Mysql Date from Date
an example from 'DateTime in Mysql'. To grasp this example, we use date(current_trimestamp ( )) query that return you the current date  from date time as Date...; Mysql  Date from Date Time in Mysql return the Current 
Mysql Date Arithmetic
in current date and time. Understand with ExampleADS_TO_REPLACE_1 The Tutorial..., we  run the select now ( ) query that return you the current date and time... returns you the 5 minute before the current minute. For current date+time
Iphone Current Date Application
Iphone Current Date Application  Hi, I am a beginner in the mobile web application segment. How can i develop Iphone Current Date Application. I need the online help guide or example about iphone current date format. Thanks
current date set
current date set  I need to set current date as default in a drop down list which has a label tag too in my jsp page.please somebody help me
current date in php
current date in php  PHP script to get current date.   Hi, You can use the following code to print the current in PHP:ADS_TO_REPLACE_1... the current date in a variable: <? $today = date("F j, Y, g:i a"); ?>
Date & Time
Date & Time  How to insert System Date & Time in MS-ACCESS using Java
Date & Time
Date & Time  How to insert System Date & Time in MS-ACCESS using Java
How to display the current time
How to display the current time  I was develop online web portal. In this web portal i am going to display time. I am using <%= new java.util.Date() %> to display the time. But it display the time after that cannot changed
JDBC : Current Date
the current date and time as a value in 'YYYY-MM-DD HH:MM:SS' SYSDATE()  : It returns the current date and time as a value in 'YYYY-MM-DD HH:MM:SS...JDBC : Current Date In this section, you will learn query for current date
Java current date - How to get current date in Java
In this section, you will learn about displaying current date and time in Java
How to get the current date in Java?
. Thanks   Hi, To get the current date and time in Java you can use...How to get the current date in Java?  Hi, I am new to Java and trying to write a program to get the current date. How to get the current date
How to print current time in r?
How to print current time in r?  Hi, I am learning and want to print current date and time on console. How to print current time in R Programming... and time. Following is the example usage of above function to get current date
Java program to get current date
(currentDate.getTime()); Above lines of code gets the current date and time in the yyyy... Java program to get current date now  ... the current date at present now. We have used Calendar class for getting the current
Get Date and Time
current date and time in the user given format. To do all this we have first... whose time fields have been initialized with the current date and time. getTime() method returns current time of date type. Here is the video tutorial of "
Mysql Date Now
; Date Now in Mysql is used to find out the current date and time. Understand...'. In this example we help you to find out the current date and time in Mysql. The Syntax below returns you the current date and time: now ( ) :The now
Getting the Current Time
Getting the Current Time       This section shows the way of getting  the current time... the current time by using the various methods of the Calendar class. These are explained
Mysql Date Commands
date, current time, local time etc. Understand with ExampleADS_TO_REPLACE_1... the current database system timestamp as a date time value without any change...; you the the current date and time in the session time zone in a value of datatype
how to get current date without system date
how to get current date without system date  is there any possiblity to get current date instead of system date in Java, as i dont want to change date in program and if i change date in OS automatically change in program also
Mysql Date Default
Mysql Date Default       Date Default in Mysql is used to return the current date and time... from Date Default in Mysql. To grasp this example, we use current_timestamp
getting current date without using system date - Date Calendar
getting current date without using system date  I want to get the current date but the Java code should not get System date as Current date. Pleae help me in getting current date without using system date. thanks in Advance
Display current time using jQuery & JSP
Display current time using jQuery & JSP In this Tutorial we will develop a Html page which displays current date and time using jQuery and JSP... the current date and time from server. You can find the details to run
Getting the current date
Getting the current date     ... the current date in the proper format (Day/Month/Year). This program shows the current date by using the various methods and fields of the Calendar class
Mysql Now Current DateTime
Current Date Time'. To understand and grasp an example we run a query now ( ) that return the current date  and time of your database. Query:-ADS... Mysql Now Current DateTime     
Mysql Now Current DateTime
'Mysql Now Current Date Time'. To understand and grasp an example we run a query now ( ) that return the current date  and time of your database... Mysql Now Current DateTime   
convert date time to int
convert date time to int  convert date time to int
How to display current date in textbox - Date Calendar
How to display current date in textbox  Hi guys, I'm really need your...;% } This is my problem: I want to display current date in textbox... Date(); var month = currentTime.getMonth() + 1; var day
Iphone Current Time Example
Iphone Current Time Example After going through this iphone SDK example, you will be able to show the current time on UILable. In this example we have used a UILable to show the output(current time) of the application and an UIButton
date time picker
date time picker  I have enetered a date time picker in my jsp file. there is text field before the date time picker. What should i do so... the date time picker gets opened
Display Current Date using JSP Custom(user define) Tag
Display Current Date using JSP Custom(user define) Tag In this section, we will discuss about how to display current date & time using  custom(user... In this Example, Current date & time will display using custom tag. Tag
Insert current date into MYSQL database
Insert current date into MYSQL database In this tutorial, you will learn how to insert current date into database. In most of the applications, there is a need to insert date or time to database. Mysql provides several datatypes
ModuleNotFoundError: No module named 'show-current-time'
ModuleNotFoundError: No module named 'show-current-time'  Hi, My... named 'show-current-time' How to remove the ModuleNotFoundError: No module named 'show-current-time' error? Thanks   Hi, In your

Ads