Tagged Questions
3
votes
5answers
2k views
Why does a new SimpleDateFormat object contain calendar with the wrong year?
I came upon a strange behavior that has left me curious and without a satisfactory explanation as yet.
For simplicity, I've reduced the symptoms I've noticed to the following code:
import ...
1
vote
3answers
188 views
Warning - Accessing Static Field Year
I import the Calendar class to gain access to the current year.
I do this as follows:
import java.util.Calendar;
Calendar c = c.getInstance();
int year = c.get(c.YEAR);
The code compiles and runs ...
1
vote
3answers
55 views
Best approach: transfer daily values from one year to another
I will try to explain what I want to accomplish. I am looking for an algorithm or approach, not the actual implementation in my specific system.
I have a table with actuals (incoming customer ...
0
votes
2answers
104 views
get week start and end date from week number & year in android
I wish to get the start date & end date of the week if i have the week number & year for my android app.
For example, if i pass the week number as 51 & year 2011, it should return me start ...
0
votes
1answer
212 views
RichFaces Calendar: Month and Year only display
I am using Richfaces4.0; need to display selection of month and year only; user chooses it.
<rich:calendar id="start" value="#{reportBean.fromDate}" oncurrentdateselect="alert('Hello');" ...
0
votes
2answers
890 views
asp.net availability calendar showing full year
I am looking for a asp.net control that will display a full year in a grid format, with each month as a row and each day in the month as the columns. I have found the following classic ASP script ...
0
votes
2answers
450 views
How to get the right week of year number through a Calendar?
guys,i am confused by invoking the following method:Calendar.getInstance().get(Calendar.WEEK_OF_YEAR),the result got from that method is not right.Here is my Code:
...
0
votes
5answers
300 views
How do I do a running year for a calendar report?
Here is the Query I am using:
SELECT * FROM ra_ProjectCalendar
WHERE MonthNumber between @Month and @Month + 12 and FullYear = @Year
It works great for this year, but, stops at December of this ...