calendar

Time Calendar Data Structure

We are looking at updating (rewriting) our system which stores information about when people can reserve rooms etc. during the day. Right now we store the start and time and the date the room is available in one table, and in another we store the individual appointment times. On the surface it seemed like a logical idea to store the ...

Has anyone found a good open source ajax calendar control (not a popup date picker)

We are looking at replacing a proprietary calendar control. I've looked at scal http://scal.fieldguidetoprogrammers.com but styling is weak and it's not functional enough for day-spanning events or concurrent events in the day view. Feyasoft.com has a ExtJs based ajax calendar that looks great but its not open source. Thanks in advan...

Is .NET giving me the wrong week number for Dec. 29th 2008?

Hi there According to the official (gregorian) calendar, the week number for 29/12/2008 is 1, because after the last day of week 52 (i.e. 28/12) there are three or less days left in the year. Kinda weird, but OK, rules are rules. So according to this calendar, we have these boundary values for 2008/2009 28/12 is week 52 29/12 is week...

Is there any events based calendar that is available for ASP.NET

Hi i am looking for an events calendar where user can come in and add their events.. and then latter on other ppl can view it... what i am looking for is something like this.. http://www.torontoparentsguide.com/Events/tabid/92/Default.aspx ...

How would you store possibly recurring times?

I need to store whether something happens once, daily, weekdays, weekly, some days of the week, some days of the month, which may be numerical or symbolic, like first Monday of each month, and so on. Any recommendations? Any code, data structure or schema to look at? ...

iPhone native apps - access to call logs, SMS, calendar, iTunes library

As I understand there aren't any public APIs available or any 'legal'/'official' way of accessing those... I was just wondering how come some Desktop apps (MissingSync, iPhoneDrive) have access to those then... ...

Calendar (date-picker) control for mobile devices in ASP.Net

Hi, I'm looking for a calendar control (aka date-picker) that works on mobile devices. The problem is most devices are w/o JavaScript, or with poor JavaScript support. ASP.Net's built-in control uses JavaScript to do post-back. ASP.Net has a mobile calendar control, but it isn't fully localizable (on low end devices where it displays a...

How do you set the time and only the time in a calendar in Java?

Having the hours and minutes, is there any easier or better way to set it into a Calendar object than: calendar.set(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH), calendar.get(Calendar.DAY_OF_MONTH), hour, minute); ...

Table cell height in terms of font size with CSS

I have a table (a calendar, notably). I want to make the calendar not look ugly when nothing is written in for any of the dates, so I want the minimum size of a cell to be equal to four times the font height. (That is, if I have a calendar row with nothing in it, and a calendar row with four lines of text, I want them to be the same size...

Why am I getting a (401) Unauthorized Error in Google Calendar API

Ive been playing around with the Google Calendar API and am getting stuck on something. When i call this below to delete a calendar event it works fine on the first pass and usually the second. However, around the 2nd or 3rd time I call this method I get a (401) Unauthorized error. It uses the same credentials every time. If I get th...

How to create a 13 month moon based Calendar in .net

hi i would like to create a custom calendar, this calendar will have custom month names and day names it will contain 13 months with 28 days each do i need to create and entire Culture or can i just created my own System.Globalization.Calendar implementaion? ...

What is the easiest algorithm to find the day of week of day zero of a given year?

I am trying to figure out what the day of the week of day zero (January 1st) of a given year. So far I have looked at the Wikipedia page 'Calculating the day of the week' but I was wondering if there is an easiest algorithm if you're just trying to find day zero. ...

Share outlook calendar from html

Is it possible to link to someone's outlook calendar (assuming you have priveleges to view it through outlook itself) from a web page? I am working on an intranet site and would like to provide a link to someone's calendar similar to: outlook:\\Public Folders\All Public Folders\Shared Calendar However, this is not a public calen...

How do I localize the jQuery DatePicker?

I really need a localized dropdown calendar. An English calendar doesn't exactly communicate excellence on a Norwegian website ;-) I have experimented with the jQuery DatePicker, their website says it can be localized, however that doesn't seem to work. I am using ASPNET.MVC, and I really want to stick to one javascript library. In thi...

Recurrence rule definition (RFC2445) question

Hi, I'm using Google's RFC2445 implementation (http://code.google.com/p/google-rfc-2445/) for recurrence rules. If I define a MONTHLY recurrence starting on the 30th of January, months with less than 30 days (i.e., February) will be totally skipped. So the Google API would return 30th Jan, 30th March, 30th April, etc. Not good. I would ...

parser for ics files in .net

I'm trying to figure out the best way take a ics file and convert it into a format I can put into a database. Can anyone recommend how to do this? ...

How do I set TargetNullValue to a date?

I'm using the WPF toolkit's Calendar control to allow users to select a date. If the date is not yet selected then the property the SelectedDate is bound to is Null. This makes the Calendar default you January 1, 0 AD. I'd like to do something like SelectedDate="{Binding UserPickedDate, TargetNullValue=Today, Mode=TwoWay}" But both "T...

Know a good templated ASP.Net Calendar control?

I'm looking to find a decent calendar control for an ASP.Net application that allows each day to have an "ItemTemplate" type of declaration so that I can list things that are happening within each day. Something like the Club Starter Kit, only more robust and that can handle other datasources besides DataSets and DataTables. I'm thinkin...

Dated reminders in sharepoint calendars

I have a departmental maintenance that needs to be done roughly every 3 months. The maintenance itself can't be automated (it involves physically swapping a primary and spare piece of networking hardware to verify the spare is still working correctly). I could put this as a recurring event in Outlook and give it a two week reminder win...

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 year. How do I get it to show a running year? ...