calendar

How do we programmatically server-side add Outlook Events for several users?

We have to add and update outlook calendar events for several users (different appointments events for each user) under program control (VB or Ruby). A server solution with no action required by individual users is preferred. Simple ICAL based technology doesn't appear to easily support updating existing events (i.e. schedule chan...

Is calling Java's Calendar.getTime() necessary to update the object?

I came across a comment in some java code that states that getTime() needs to be called to update the Calendar object. Is this true? I cannot find anything that says that this is necessary. Here's the code: Calendar cal = new GregorianCalendar(); cal.setFirstDayOfWeek(Calendar.SUNDAY); cal.set(2009, 9 - 1, 10, 2, 30); // Get Time needs...

have anyone seen a good asp.net mvc event month calendar

I am migrated a site from asp to asp.net-mvc. I was using a third party event calendar asp code. does anyone know of a good asp.net mvc event calendar where i see a month view and it will show events in the date cells. ...

Sharepoint Calendar List: Troubleshooting Anonymous Access

Having problem getting anonymous access to work for a calendar list in a MOSS 2007 internet web. Have an authenticated publishing web that is extended with a anonymous only web: web1 is publishing site, authenticated and is extended into web2 which is anonymous. In Central admin Web1 is default zone. Allows anonymous and has interg...

Name for a "naive" timekeeping system?

I am thinking of a "naive" timekeeping system of the sort I believe would be likely to be implemented by non-specialists. A day is exactly 24 hours. An hour is exactly 60 minutes. A minute is exactly 60 seconds. No exceptions (i.e. no Daylight Saving or leap seconds). A leap year occurs exactly once every four years: if the year modulo...

Populating a Schedule Calendar

Hey Guys, I'm creating a scheduling system for my school that allows teachers to book rooms/vehicles. I'm just stuck on one aspect: populating the calendar. Basically, it'll have a month and week view. The monthly view I'm fine coding, but it's the weekly view I'm stuck on. The people that are inserting bookings will be able to specify...

javascript calendar

I was wondering if there was a simple way to make a topdown list calendar for a website. I don't want to use the google calendar. I would also want the calendar to show like the next 5 events and hide the rest until the 5 shown have already happened. If there is a way to do this with jquery I wouldn't mind doing that either. ...

How can I use PHP to dynamically publish an ical file to be read by Google Calendar?

Any Google search on PHP ical just brings up phpicalendar and how to parse or read IN ical files. I just want to write a PHP file that pulls events from my database and writes them out in ical format. My problem is I can't find anywhere that will answer two questions: What is the exact ical format, including headers, file format, foot...

Handling Reoccurring Events in PHP/MySQL

Example 7.30pm, second Monday each month or 7.30pm, first & third Thursday each month. Basically I want a upcoming events list for the next month. How do I handle reoccurring events in PHP/MySQL? ...

How to delete a calendar entry?

Hi all! I'm trying to implement my first android Program. It should write calendar entries (I know, not the best task to begin programming Andorid). I've tried: Uri CALENDAR_URI = Uri.parse("content://calendar/events"); ContentResolver cr = getContentResolver(); cr.delete(CALENDAR_URI, null, null); // Delete all cr.delete(CALENDAR_UR...

google calendar iCal feed

I am working at a web portal that has a events section. I have created using DDay.iCal a iCal "feed" with all the events. Is there a possibility to make a link to this feed, and when clicked, the feed to be automaticly added to google calendar? (Something similar to RSS feeds, when you click them you can select use google reader). Or sho...

AJAX CalendarExtender problem

work on VS05 C# in web. I am adding a CalendarExtender to a page, using the default styles. When I click the calendar button to trigger the calendar popup, the calendar displays normally.Under the button event i save this calendar value on database.After this event CalendarExtender does not work show ERROR ON PAGE on web form status bar...

Javascript Month, Week, Day View Calendars

Hi all, I'm yet to find a Javascript Library that offers a plugin which can output Events in a Calendar which supports: Month View Week View Day View There is only one so far which supports all views but thought it would be good to see if anyone else knows of any other Javascript Libraries (Plugins) which can support this. Thanks! ...

integrating .net application with IMail

We use IMail. I am writing a diary/calendar system and ideally would like to integrate with the users IMail calendar. I need to check for appointments, meetings etc in the users calendar before booking appointments. Would like to display a calendar view using data from Imail. Is this possible, if so can anyone suggest a starting point, ...

Will this pause my Java thread for a minute?

Am I doing something really stupid here? I am trying to execute a method every minute or so, forever, or until I stop the program. while(true) { this.doSomethingPeriodically(); Calendar now = Calendar.getInstance(); int minutes = now.get(Calendar.MINUTE); int resume = minutes + 1; while (now.get(Calendar.MINUTE) < resume) { ...

Google Calendar App shows "Busy"; how to share more details?

We're building a multiuser platform, where each registered user has a Google App account with his e-mail and calendar. People can add to the events to the calendar, but the entry always show "Busy" instead of displaying the full event details. Any ideas? ...

How do I create an iCal-type .ics file that can be downloaded by other users?

I want to create an iCal Calendar that can be downloaded from my website to the users Calendar program or imported to Google Calendar. What I want to know is if I do a direct Export from iCal on Mac OS X is that the file that I upload to my server? Any catches or caveats I should be aware of? Or is there a better way? ...

Best way to implement a Calendar interface using Google Cal feeds for events?

I'm building a site for my school as a pet project, which would include accounts for all students. I want to display a calendar for each student that should have the following features: It should be able to import events from multiple Google Calendar feeds. Compatibility with either the XML, ICAL or HTML feed will do. It should be able...

HELP! Dynamic ical created from database -- not working!

I built a site in PHP 5 and MySQL with a table that keeps track of scheduled photo shoots. I want to push out a feed of those scheduled "events" into an ical file. I originally asked this question and got a good answer from S. Gehrig. I got a sample ical file working, and updating regularly in Google Calendar whenever I manually adjuste...

calendar control

i wanna load calendar when i click the textbox (in asp.net C#).. how can i implement that..? can anyone tell me the idea to do that..? ...