Tagged Questions
The month tag has no wiki summary.
16
votes
10answers
7k views
Is there a predefined enumeration for Month in the .NET library?
I'm looking to see if there is an official enumeration for months in the .net framework.
It seems possible to me that there is one, because of how common the use of month is, and because there are ...
14
votes
8answers
21k views
How to parse a month name (string) to an integer for comparison in C#?
I need to be able to compare some month names I have in an array.
It would be nice if there were some direct way like:
Month.toInt("January") > Month.toInt("May")
My Google searching seems to ...
14
votes
6answers
17k views
Creating a Backpack-like Calendar in Rails
What are the current best practices in the Rails world for displaying a calendar month view with event items bound to the days in the month (like in Backpack or Google Calendar, for example)?
I don't ...
12
votes
10answers
104k views
Convert Month Number to Month Name Function in SQL
I have months stored in SQL Server as 1,2,3,4,...12. I would like to display them as January,February etc. Is there a function in SQL Server like MonthName(1) = January? I am trying to avoid a CASE ...
11
votes
4answers
933 views
Zero-based month numbering
Some popular programming languages use month numbering which is off by 1 -- JavaScript comes to mind, as does Java, and if memory serves, C is another. I have some questions:
If you are going to be ...
9
votes
3answers
164 views
GetMonthName: Valid values are between 1 and 13, inclusive. Why?
I accidentally passed 0 into DateTimeFormatInfo's GetMonthName method:
DateTimeFormatInfo info = new DateTimeFormatInfo();
var monthName = info.GetMonthName(0);
and got a ...
6
votes
9answers
2k views
What is the easiest or most effective way to convert month's abbreviation to a number in Perl? (ie “jan” to 1)
If I import a library to use a method, would it be worth it? Does importing take up a lot of memory?
5
votes
7answers
2k views
JQuery Datetime picker - Need to pick month and year only
I went through this post http://stackoverflow.com/questions/2208480/jquery-date-picker-to-show-month-year-only which is very helpful to me in order to hack the datetime picker UI to suit my situation. ...
4
votes
4answers
170 views
Different CSS background-image depending on month and year
Basically, I have a div with text in it, and I want the background to display a different image depending on what month and year it is.
How can I achieve this?
Any help would be greatly appriciated!
...
4
votes
2answers
163 views
Convert date to closest end-of-month date MATLAB
I need to convert a datenumber to its closest end-of-month date. I found an online link but it is very inefficient for a large matrix (at ...
4
votes
7answers
866 views
PHP get number of week for month
So I have a script that returns the number of weeks in a particular month and year. How can I take a specific day from that month and determine if it is part of week 1,2,3,4 or 5 of that month?
4
votes
3answers
2k views
jQuery datepicker display year month only
I am using datepicker to select year-month only. I filter out the day part like so:
$(el).datepicker(
{changeMonth: true,
changeYear: true,
dateFormat:'yymm' }
);
The code comes from the ...
4
votes
2answers
612 views
Select all months within given date span, including the ones with 0 values
I'm trying to write a MySQL query to get an average value per month, for all months between to given dates. My idea is this:
Query, something like
SELECT AVG(value1) as avg_value_1,
AVG(value2) as ...
4
votes
1answer
5k views
PHP: Loop thru all months in date range?
if I have a start date, say 2009-02-01 and an end date say 2010-01-01. How can I create a loop to go through all the dates (months) in the range?
Thanks!!
4
votes
2answers
2k views
How to get the number of days in a given month in Ruby, accounting for year?
I'm sure there's a good simple elegant one-liner in Ruby to give you the number of days in a given month, accounting for year, such as "February 1997". What is it?
3
votes
0answers
47 views
Calculate number of Mondays in a given month (PHP) [closed]
I need a (automatically populate a form field) PHP function which will return a value of either 4 or 5 for a given month, which represents the number of Mondays in that month (calendar weeks).
Cheers
3
votes
2answers
80 views
How do you generate a sequence of the last day of the month over two years in R?
I use lubridate and figured that this would be so easy
ymd("2010-01-31")+months(0:23)
But look what one gets. It is all messed up!
[1] "2010-01-31 UTC" "2010-03-03 UTC" "2010-03-31 UTC" ...
3
votes
2answers
125 views
Convert Month Name to Month Number Function in SQL
In T-SQL what is the best way to convert a month name into a number?
e.g:
'January' -> 1
'Feburary' -> 2
'March' -> 3
etc
Are there any built in functions that can do this?
3
votes
4answers
144 views
Java: How do I get the date of x day in a month ( e.g. Third Monday in February 2012)
I am somewhat struggling with this.
I want to setup my Calendar to let's say: Third Monday in February 2012.
And I didn't find any way of doing this using Java.
For example, if I wanted to set my ...
3
votes
1answer
169 views
Month pagination with kaminari
I want to paginate posts by month so I added following scope in Post model
class Post
include Mongoid::Document
include Mongoid::Timestamps
scope :by_month, lambda {|end_date| ...
3
votes
3answers
84 views
Python: weekday position of following months
Given a date, how do you know the weekday position in the month (ex: third tuesday of the month) and how do you get the date for the same weekday for the next month (ex: third tuesday of the month+1)?
...
3
votes
4answers
192 views
Python: Difference of 2 datetimes in months [closed]
Possible Duplicate:
Best way to find the months between two dates (in python)
I would like to know how I can have the exact number of months for this difference:
date1 = ...
3
votes
5answers
155 views
Accurate method to add months in PHP 5.1?
Yesterday I ran into an issue with PHP's strtotime not properly adding a month. On '2011-05-31' I ran:
date('Y-m-d',strtotime( '+1 month', strtotime('now')));
Which returns '2011-07-01' when I am ...
3
votes
3answers
504 views
Rails Sql Query for MONTH AND YEAR
I'm trying to show sales transactions for the current month and year in my index view.
This is what I've put in my sales controller:
def index
@sales = show_sales_for_current_month(@sales)
which ...
3
votes
2answers
448 views
Getting number of days in a month
I have a comboBox with all the months in it.
What I need to know is the number of days in that month.
var month = cmbMonth.SelectedIndex + 1;
DateTime date = Convert.ToDateTime(month);
So if I ...
3
votes
3answers
525 views
Javascript: How to get the day of week and the month of the year?
I don't know much about Javascript, and the other questions I found are related to operations on dates, not only getting the information as I need it.
Objective
I wish to get the date as ...
3
votes
2answers
552 views
Javascript month difference
How do I calculate difference in months in Javascript?
Please note there are similar questions such as:
What's the best way to calculate date difference in Javascript
But these are based around MS ...
3
votes
2answers
361 views
SQL monthly join and monthly total percentage
My head is smoking from (stupid) tries of using JOIN, WITH and GROUP BY to come up with a solution for my pretty common scenario - I just can't wrap my head around it. Let me throw the example at you ...
3
votes
3answers
142 views
SELECT to get two entries, from same table, differentiated by date, in one row
I have a table in which i keep different meters (water meter, electricity meter) and in another table i keep the readings for each meter.
The table structure is like this :
The meter table
MeterID | ...
3
votes
1answer
786 views
Mysql Partition : how to deal with month and hash
I have a specific question on mysql sub-partitioning using hash on a date/datetime column.
I have partitioned by site_id, and I want now to subpartitioned by month (1 to 12), so the partitions number ...
3
votes
1answer
1k views
jQuery UI DatePicker - Disable all days except last day of month
I'm trying to use the jquery UI datepicker to show a calendar with only the last day of the month selectable.
I've successfully used the beforeShowDay event to disable days of the week but not sure ...
3
votes
3answers
495 views
python calendar to calculate month backwards
we are trying to create a calendar function in python. we have created a small content management system, the requirement is, there will be a drop down list on the top right hand corner of the ...
3
votes
5answers
6k views
Find first and last day for previous calendar month in VB.Net
I'm creating a report in MS SQL Server Reporting Services and need to set the default Start and End Date report parameters to be the first and last dates of previous calendar month and need help.
The ...
3
votes
4answers
5k views
MySQL Query to calculate the Previous Month
I would like to calculate my total order amount in the previous month.
I got the query for getting the data for the present month from the current date.
SELECT SUM(goods_total) AS Total_Amount FROM ...
3
votes
5answers
348 views
How would I fix the last day of the month errors that result with this php code?
The code below is what I'm using for a website menu which moves the link for the current month's page to the top of the link list on the change of the month.
But this fails on the 31st of some ...
2
votes
3answers
54 views
Perl reading file a while loop then trying to add data in the month in a foreach loop
I have a space delimited text file I am reading and am trying to add up data based on month, the data looks like this:
Mon Apr 04 08:00:00 MDT 2011 120.72 0.3 0.707 25.609 25.609
Mon Apr ...
2
votes
2answers
108 views
How can I add this and next month to a <select> list with javascript?
Here's what I have tried, which doesn't work:
<select name="mois" id="mois">
<option value="" selected="selected">...</option>
<script type="text/javascript">
...
2
votes
2answers
45 views
PowerShell: Compare DateTime by Month?
What is the correct way to compare DateTime's by the month in PowerShell 2.0? In the end, I want to know if the current month is July or later, between July and December. The year doesn't matter. I'm ...
2
votes
4answers
111 views
Java - Months and days?
First of, I have been searching to find anything close to my question but I couldn't find anything. I am not a very good programmer, I have just started to play with it a little, and my interest for ...
2
votes
5answers
252 views
Python: Number of the Week in a Month
When specifying a date:
datetime.datetime(2011, 8, 15)
How can i get to know that this is the third week of the month?
What if I want this dates?
datetime.datetime(2011, 2, 28) //should return 4
...
2
votes
1answer
264 views
CakePHP month names translations
What is the best way to translate months names into another language when I use
$form->input('date_field');
2
votes
4answers
1k views
how to get month as a String in android?
How can I get the month in android,as a String, as May,September,November,etc...and not like 5,9,11,...Can anyone help me?
I have this : int month = c.get(Calendar.MONTH) but I need the name of the ...
2
votes
1answer
223 views
PHP / MySQL: Group items by month
Good morning,
I am trying to alter the output of a calendar WordPress plugin for a website. I need to be able to group items by month. Ideally, I would have the month and year and below that would be ...
2
votes
1answer
125 views
Get year of previous and next months
In my calendar, I need to compare the current year to the years of previous and next years to find out if the month needs to reset back to January, and the year incremented/decremented. I already have ...
2
votes
4answers
79 views
Bonkers PHP Months?
Here is a basic proof-of-concept script:
<?php
for($i = 1; $i < 13; $i++)
{
echo 'Using ' . $i . ' | ';
echo date('F', mktime(0,0,0,$i)) . " | ";
echo date('F', strtotime('2011-' . ...
2
votes
6answers
299 views
MySQL: Is it possible to 'fill' a SELECT with values without a table?
I need to display the total of 'orders' for each year and month. But for some months there is no data, but I DO want to display that month (with a total value of zero). I could make a helpertable ...
2
votes
4answers
87 views
Month Class: Overzealous Refactoring? [.NET]
Would creating a Month class be practical or is that a bit overzealous? I was thinking of using it to restrict integer input to 1-12 and provide helper functions for easy conversions between strings ...
2
votes
1answer
417 views
How to validate a dropdown list with months on CakePHP
I've been seraching for weeks how to do that but didn't find any good answer. I mean I thought it was supposed to be easy to do that, but not at all. Here's the thing, I have to ask the user to choose ...
2
votes
4answers
1k views
iOS: How to get a proper Month name from a number?
I know that the NSDateformatter suite of functionality is a boon for mankind, but at the same time it is very confusing to me. I hope you can help me out.
Somewhere in my code, there is an int ...
2
votes
5answers
2k views
convert month from name to number
Is there an easy way to change $month = "July"; so that $nmonth = 7 (07 would be fine too).
I could do a case statement, but surely there is already a function to convert?
EDIT:
I wish I could accept ...