Calendar « Component « Java Swing Q&A





1. Java date and calendar controls    stackoverflow.com

Does anybody have any recommendations of good date pickers (either drop down calendars or small calendar components) for use in a Java Swing application - either beans or source code? They ...

2. approach to build a simple Calendar in Java Swing    stackoverflow.com

I need a simple way to implement a Calendar (similar to google calendar) in java. The calendar must display Monday - Sunday at the top and each hour as a row.

 ...

3. Free Java Swing calendar component for date picking    stackoverflow.com

I need to add ability to pick a date in my Swing application. Picking should be similar to JComboBox, but instead of drop down list I would like to obtain one ...

4. Rich calendar component for Swing application    stackoverflow.com

My company is adding some rich calendar functionality to our Swing application. We want it to work like Outlook's calendar. Here are some of our requirments:

  • Views for day, week, ...

5. Help with java calendar    stackoverflow.com

Need help to finish my java calendar. Can anyone see why the text that is written on the date today are not saved? And how can I ensure that written text is ...

6. search java swing calendar appointement component    stackoverflow.com

I am searching for a Java Swing calendar component that would allow adding schedule and reminder features, but MiG Calendar is too expensive. Here's a screenshot. Any suggestion? ...

7. Shift Calendar for SWING    stackoverflow.com

I may need to implemet a work shift calendar for a java/sql application. Does anyone know of a free API, or do i have to design the thing from scratch? ...

8. Does Swing come with Calendar and time field components?    stackoverflow.com

I would like to have Date and Time fields in my jPanel application so that the user can pick a date and time from a drop down lists. Is there ...

9. How do I make a calendar in a standalone Java GUI    stackoverflow.com

If i am building a calendar for my standalone java GUI application and lets say part of it is an event scheduler, How can i create a calendar in the application ...





10. Setting the postion of the Calendar    coderanch.com

Hi I have some textfields inside an applet. The textfields have a mouseclicked event defined for them to select a date i.e a calendar appears as soon as a mouseclicked event occurs within the textfield. But, the calendar position is not being set at the appropriate location altho' I'm setting the bounds which is not taking effect. Is there something wrong ...

11. Calendar    coderanch.com

12. DatePicker/Calendar Beans?    coderanch.com

13. Calendar with Java Swing    coderanch.com

14. Calendar Control Concept    coderanch.com

15. Daily Calendar for Scheduling people    coderanch.com

Hi friends, Has anyone ever developed a calendar that could schedule people. For example, like a calendar used in doctor's offices. I am half way into developing this calendar, but I am stuck b/c I do not know how to schedule people, example January 26, 2004 9:00 AM John Smith 10:00 Am Jack Jones March, 15, 2004 10:00 AM Suzan Stone ...

16. Problem with Gregorian Calendar BC Date    coderanch.com

Since this doesn't have anything to do with Swing/JFC/AWT GUI stuff, I'm moving this post to the Java In General - Intermediate forum. Also, the reason for this is probably due to the fact that to calculate a leap year in the present, future, or recent past all you need is the formula that a leap year is a year divisable ...





17. How to check where a date really exist in calendar?    coderanch.com

If you are writing a simple application, here are a few suggestions. 1) If you have a single text field to enter the date (assuming the format is mm/dd/yyyy), you can read the year first. You can check the condition if the is entered as desired; minimum value <= year <= maximum value. If this condition is satisfied, you can check ...

19. Calendar Control    coderanch.com

Has someone in this java community built a custom calendar GUI control? I am looking for a calendar control, as part of a project I am doing. If it is already available, then I would like to integrate it directly into my code. Any suggestions are welcome. ---------- P.S -> That is, if anyone has some free code lying around that ...

20. Does SWT provide a Calendar Widget?    coderanch.com

Hi All, I require a Calendar widget, which I assume is not available as part of the SWT toolkit. Also, does SWT class library have an equivalent for a Spinner widget in Swing? There are Calendar and spinner custom widgets in SWT available on the net but they have certaim license issues... Regards, Neha

21. Calendar    coderanch.com

23. Calendar Bean, not date picker per se    coderanch.com

Greetings, I've been searching about for a calendar bean (but not a date picker per se). I need functionality similar to how Outlook works - where you can see a larger calendar with appointments on days, etc. I suppose all I might need is a calendar bean that can handle custom cell renderers. Anyways, I searched the forum already but I ...

24. Calendar and Recurring patterns!    coderanch.com

25. Outlook/MiG style calendar component    coderanch.com

Hello, I'm looking for an open source outlook or MiG style swing component. I'm interested in writing my own, however wouldn't really know how create a the layout manager to arrange the month view with vertical times. If someone could point out a nice tutorial or book on where to start or how to go about it?

26. Calendar Control    coderanch.com

27. Using Calendar class    coderanch.com

Hi All, Its nice to know there is forum like this to help us all GreenHorns.. I would like to know is there a Calendar component in swings like "JCalendar" or some thing. I have designed a popupcalendar using the regular swing components where i have made use of Calendar class Calendar c = Calendar.getInstance(); and i am extracting individual fields ...

28. How to show calendar of all months in swings    coderanch.com

How I did this once: - two panels: one for weekday labels, one for day labels First panel has a GridLayout(1, 7) layout and displays all days of the week. Second panel has a GridLayout(0, 7). It has 31* JLabels added, in rows of 7. Each JLabel has the text of that day, or null / empty string if not used ...

29. Calendar UI with Multiple selection    coderanch.com

Hi Everyone, I am new to swing application. I wanted to design Calendar with checkboxes for multiple days selection. This calendar should populate based on Year entered.That is., 12 Calendars has to be populated based on the Year and User can select multiple days by checking Checkboxes. How can i approach this..? Please help.

30. Calendar Program    coderanch.com

I am making a calendar scheduling program for my major project. That being said our teacher does not teach us much about GUI and we are supposed to look at outside sources (aka other peoples codes, java websites) for things that we might not know/understand. So what I am tasked to do is to have some sort of date picker. The ...

31. how to create a Calendar    coderanch.com

Well you will need the following things 1) A panel or some suitable container with a grid layout 2) Labels to display the week days as well as the dates 3) GregorianCalendar has all the methods you will require to figure out stuff like leap year, number of days in a month, day on a particular date etc. 4) If you ...

32. Regarding Calendar presentation    coderanch.com

I am making a Leave management system. In this i want a calendar screen so people can choose leave dates. But how can i put detail in the calendar that this date is holiday or not. Such if someone see the calendar and see the holidayname with date. can anyone know how can this problem can be solve. Right now i've ...

33. Build a Calendar using Swing    coderanch.com

34. Next step in developing a calendar component    coderanch.com

My ultiimate objecttve is to replace the rather basic plain jspinner controls I am using for date / time entry on my input forms. I have created a class called JCalendar which extends JPanel and has all the necessary functionality to display the date and time. Image attached. What I'm hoping someone can help me with is the next step. I'm ...

35. How to set calendar    coderanch.com

36. Calendar control?    java-forums.org

37. Calendar days mixed up..    java-forums.org

Hi, I'm new to the forum and I'm building a calendar-based program.. Having some difficulties with setting the calendar straight, here is my code: Java Code: GregorianCalendar cal = new GregorianCalendar(year, month, 1); //setting calendar for the first of that month cal.setFirstDayOfWeek(1); nod = cal.getActualMaximum(GregorianCalendar.DAY_OF_MONTH); som = cal.get(GregorianCalendar.DAY_OF_WEEK); System.out.println("------------------------------"); System.out.println("Number of days in month: " +nod); System.out.println("First day of month is ...

39. How to Show Calendar    java-forums.org

40. Design Calendar UI    java-forums.org

Hi Everyone, I am new to swing application. I wanted to design Calendar with checkboxes for multiple selection. This calendar sholud populate based on Year entered.Please refer to the screenshot attached. I exactly need this requirement. This has been done using Javascript and HTML Tags in Web Application. But this needs to be implemented using Swings Technology. Please help how can ...

41. Swing calendar (date picker) recommandation    forums.oracle.com

42. System Time +Calendar using Swing    forums.oracle.com

Hi I'm trying to create Swing Appliation that displays the System time.but i don't know how to display it on the window.I imported package from java.util.calendar.* but i dont know how to use it. Also how can i create Calendar with help swing appliation? Sorry for my post in this thread but i' wasn't sure where to post it.So posted here. ...

43. GUI of a calendar (monthly)    forums.oracle.com