Questions tagged [jcalendar]

JCalendar is a Java Swing date chooser bean for selecting a date.

JCalendar is a Java Swing date chooser bean for graphically selecting a date. It adheres to the JavaBeans component model. The project's home page is here. Several enhancements and bug fixes have been collected here.

143 questions
0
votes
3 answers

Setting The Date with Jcalendar

I have used JCalender to get the date. It returned the date like this Thu Mar 01 18:35:53 PST 2012 But what I need is this format. 2012 Sep 04 Here is the code I am using: java.util.Date s = txt_dob.getDate();
-1
votes
1 answer

Get rid of all com.toedter.calendar.JDateChooser colors

My humble goal is to have a date-picker in java swing that does not have hard-coded colors in it. A date-picker that delegates it's appearance to the chosen LAF. Sob... I am using com.toedter.calendar.JDateChooser version 1.4 With this answer i was…
BabaNew
  • 884
  • 1
  • 13
  • 27
-1
votes
1 answer

dateChooser set todays date

I want to set the todays/actual date in datechooser field automatically. I've looked a couple of Stackoverflow topics about this and couldnt find a way to complete this. I dont want to output the date with system.out.println(); but I just want to…
Jay Dee
  • 127
  • 1
  • 2
  • 10
-1
votes
1 answer

Date from SQL datebase to JCalander

I used http://toedter.com/ jDateChooser to get the date from user. But now I want to reset the selected date to the calendar from SQL database. This is the code I wrote to put selected date to database. pst.setString(5,…
nascar895
  • 149
  • 1
  • 12
-1
votes
1 answer

How to change sql date format in java

I am using JDBC connectivity & Java Swing UI and there I used SqLite DB. Here I have a java component that is jCalender to pickup date & i pick the date into String. Firstly I convert string into java.util date then i convert java.util.date to…
Pritesh
  • 23
  • 4
-1
votes
1 answer

How to convert this string to SimpleDateFormat "dd-MM-yyyy"?

SimpleDateFormat parser = new SimpleDateFormat("EEEE, MM dd, yyyy"); SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yyyy"); Date date; date = parser.parse(date1); output = formatter.format(date); date 1 is "Sunday, March 3, 2013"
Muhsina M
  • 21
  • 2
  • 8
-2
votes
2 answers

jMonthChooser shows that it returns integer value of month, but it always return 01 as value on selecting any month

{ SimpleDateFormat myformat = new SimpleDateFormat("MM"); String abc = myformat.format(jMonthChooser2.getMonth()); } This jMonthChooser is always returning 01.
Anmol
  • 1
-2
votes
2 answers

Selecting Date of Birth using JCalendar in Java

I am developing a java desktop app. I wanna implement Date of Birth selecting using JCalendar. I have a JLabel and this jCalendar is added to JLabel .And set position using setBounds().But the calendar is overlapping with other components…
RAJIL KV
  • 399
  • 1
  • 7
  • 24
1 2 3
9
10