calendar

Android google calendar permission issue

Hello, I am using google-api-client to access Google calendar. Following are the permissions in my manifest file. <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <uses-permission android:name="android.permission.USE_CREDENTIALS" /> <uses-permis...

How can I hook up my outlook calendar to a website?

I want to publish some kind of feed that outlook can read and use to populate its calendar. I'm not having any luck discovering how to do this. Can anyone point me in the right direction? ...

How to delete all events from calendar?

Is there a method to receive all entries from calendar at once, without specifying predicate, which can only create 5 years intervals? I know about "5 years" from console output. I specified 1912-2020 years and here is output: EKEventPredicate start:1/1/12 12:00 AM; end:1/1/16 12:00 AM; cals:(null) Here is my current code: EKEventStor...

How make a list of all calendar dates in 2009 and 2010 that fall on Monday to Thursday?

I need to loop backwards and make a list of all calendar dates in 2009 and 2010 that fall on Monday - Thursday of each week and record them as a map of day-month-year strings mapped to a day of the week: "19-10-2010", "Tuesday" "4-10-2010", "Monday" Is there a library in Java that would help with this or can it be done with just the s...

recurring event logic

Hi, I'm working on a Groovy/Java calendar-type application that allows the user to enter events with a start date and an optional recurrence. If it's a recurring event, it may recurr: monthly on a date of the month that corresponds to the start date weekly on a day of the week of that corresponds to the start date every 2 weeks on a d...

How to create a java.util.Calendar instance at epoch time?

Is there any existing way to get a Calendar populated with time at epoch using Calendar API's other than explicitly setting them at epoch? All I was able to do was to get the current time. ...

Multiuser web-based calendar based on php, mysql, javascript

Hi there, I'm searching for a multiuser web-based calendar system that supports multiple users. I'm looking for these features: Multiple users Two user groups: First group is allowed to see events, the second group can create and edit events The events should be stored in a mysql database or a file The system has to be (very) easy to ...

full-calendar connected to the model (BD)

Hi, I need to set a collection of date appointments in the calender, and this collection has to come from the database. Could you please help me by giving some clue, because I don't understand the specification. Sorry for my English, as it's not my native language. ...

Calendar always shows 7:00 no matter what the data in the table says - Basically the variable is always set to 7:00.

Hi Guys, I have a table with data exactly like this: ID Heading Description Time Location Start_Date End_Date 63 Wed Serv Small group 19:00:00 null 2010-10-13 null 70 Fall Harvest Calvary null Pepin, Wi 2010-10-30 null My Calendar shows the events on the correct dates, but the ti...

Click on month in Silverlight Calandar in year mode, get the selected month and stay in year mode?

I want to provide a user the ability to select a month\year I was going to just use 2 listboxes but I say that the Silverlight calendar had a year mode, which displays the months of a year (not the months with all the days). But when you click on a month it switches to displaying the days in the month selected (month mode). I tried sw...

set the time in Alarm manager Android - alarm fired instantly

I have this code which will call alarm notification public static Calendar cal = Calendar.getInstance(); cal.setTimeInMillis(System.currentTimeMillis()); cal.add(Calendar.HOUR_OF_DAY,hour); cal.add(Calendar.MINUTE, min); Intent intent = new Intent(this, OnetimeAlarmReceiver.class); PendingIntent pendingIntent = PendingIntent.getBroadc...

MS Outlook incorrectly interprets ICS files in local time: daylight savings time overcorrection

Does anyone know a way in an ICS file to specify that all times are written in the local time at the location? I thought that leaving the 'Z' off the end of times, and using the TZID="America/Denver" (for example) in DTSTART and DTEND lines accomplished this, but MS Outlook assumes that all times are in the location's standard time. My...

Rails - any plugin/gem for creating calendars

Hi, I was trying to find a gem or plugin that had a cool looking calendar control. Is there anything that someone can recommend? Is there a way to display a set from 2 different months like dec. 11 - jan. 11? ...

Creating An iCal Event, Without Creating A Calendar

I am using the iCalCreator class to create an event for user to load into their personal calendars. Here's the info, for those unfamiliar with it: http://www.kigkonsult.se/iCalcreator/ Using the documentation, right on the homepage, I'm able to create an event and output it to the browser. No problems. The issue is that when it is impor...

Need help building a Calendar UI for Android 2.2. Any suggestions on how to start?

Hi, I am building a Calendar Application for Android OS. I have previously made some Android applications with built-in android widgets such as buttons and spinners etc. Now I want to create an Android Application that displays 4 'tabbed' views of a Calendar (month, week, day & list). I have already built the backend stuff for the appli...

After adding an event to a user-created calendar in android,the event title doesn't show up.

I'm developing an android app that creates a calendar on the phone the first time the application is installed. When I create an event, either programmatically or using the device itself, the event will show up in the calendar but its title is missing. I'm testing my code on HTC nexus one. Since I'm getting the same behavior when creat...

Calendar-Events on Symbian OS (format etc)

which format has a event in a symbian calendar? i want to write a program which syncs google calendar with symbian calendar on my smartphone, because there's no good solution for that! edit: can i access symbian calendar on a smartphone via symbian-API? ...

Changing Icon per Day

Just like the Calendar app on the iphones and ipods, how do I make the Icon change per day? ...

How to synchronize an online ICS file with Outlook?

I have been working on a project that required publishing of a set of appointments from my ASP.NET MVC application to outlook. I handled this by creating a controller that returns an ICS formatted file back. So far so good. When I import this calendar in Outlook, it is read-only. What I want to achieve is to be able to update (add/modi...

How to delete calendar events faster?

Following code works and deletes all calendar events from iPhone calendar database. But events are deleting very slow: 2 events per second on iPhone 3GS. So if you have 3000 events - then it's 25 minutes to erase them... How would you optimize this code? Maybe I am doing something wrong? Thanks. - (void)deleteAllCalendarEventsFromIPho...