calendar

Updating a Sharepoint Calendar from a VB.NET WinForm app

I am about to endeavor in the area of the posting subject and am looking for early advice. Is there a Sharepoint SDK that I need to install to be able to do this or shall I scan the .NET Framework for the appropriate objects to use? Advice or useful links would be appreciated. ...

Is there a standard file format for storing calendar information

I have some calendar information (scheduling, appointments, etc). Is there a (XML based) file format for this? If so, Is there a .NET library for it? ...

Link SQL Database to Date

I am creating a C# program which is using a SQL database. I want to link values of dates to the calendar so that I can use them in the C# program. IE: 04/01/2010 = Monday, 05/01/2010 = Tuesday... etc 11/01/2010 = Monday, 12/01/2010 = Tuesday. This in in the aim of showing a calendar view, that can be viewed in week lots, and move forwar...

Is there an API for accessing my Windows Live calendar data?

Google calendar has an API. Does Windows Live provide something similar? Here is a link to the Google API: http://code.google.com/apis/calendar/data/2.0/developers_guide.html I am looking for an equivalent from Microsoft. ...

jQuery datepicker doesn't work

Hi, I can't get the jQuery datepicker to work. I have followed everything from the jQuery UI manual. Can you please check my code below? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="C...

jQuery UI Datepicker go to date URL

Does anyone know if it is possible to use the jQuery UI Datepicker, and when clicking on a date, set the document.location to that date, appended to a preset URL? So, if I clicked on one of the dates, it might direct me to: http://www.mysite.com?date=2009-10-25 I need to just use this as a quick way to quickly navigate my website cale...

Make all sundays Red on month calendar in c#

Hi, i was wondering if anyone knows how to make all sundays on the .net month calendar have the back colour of red? ...

JS Calendar Outlook control

Hello can you share your experience about javascript outlook calendar like control I have to add such a control to one project but don't have any experience at the moment 10x in advance ...

PHP AJAX mysql event calendar - UI for events spanning multiple days

I have built a PHP calendar system and have pretty much everything done but not sure how to deal with a UI issue involving how the events that stretched out over a couple of days. I want to be able to stretch an event that stretches over couple of days in a div that spans those days in the calendar. Basically I would like to know how to ...

How to find if range is contained in an array of ranges?

Example business_hours['monday'] = [800..1200, 1300..1700] business_hours['tuesday'] = [900..1100, 1300..1700] ... I then have a bunch of events which occupy some of these intervals, for example event = { start_at: somedatetime, end_at: somedatetime } Iterating over events from a certain date to a certain date, I create another ar...

Remind me Friday, what I should see on the weekend

I have the following query set up, in various incarcerations, to remind me of contract expirations 0, 7, 30, 60, and 90 days before the confirmed expiration date. My method of calculating the notification date doesn't give me any flexibility. For example, say I have 30 contracts expiring 12/5, a Saturday when my office isn't open. I w...

Calculate the first day of a calendar week [C++]

I need to calculate the date of the first day in a calendar week, e.g. Week 1 in 2009 -> Mon, 29.12.2008 (!) Week 44 in 2009 -> Mon, 26.10.2009 I have some ugly code for this, but I would prefer a nice C++ lib. Any suggestions? Thanks. ...

Is there an iPhone 3.0 SDK API for calendar event management?

Is there an API in the iPhone 3.0 (or later) SDK to programmatically create & manage calendar events? ...

Get selected date in jqueryui datepicker inline mode

i am trying to use jqueryui datepicker.I want to use the inline mode.Now i want to know how can i get the selected date when user selects a date.Where to get and how to get ? Please advice ...

Java calendar engine

Does anybody know any engines for calendar implementation? For example, which accepts event definition object (it can be iCalendar-style) and current date as input and outputs whether this date matches event definition? ...

How to Bind Blackout Days in WPF Toolkit Calendar control?

I'd like to bind a list of dates to the BlackoutDates property but it doesn't really seem to possible. Especially in a MVVM scenario. Has anyone accomplished something like this? Are there any good calendar controls that play nice with MVVM? ...

How to change Culture?

Hi! Sorry my very poor english ... I'm using asp.net control toolkit to do a calendar on asp.net mvc, and it works fine! But it is in english format date. How can i change to pt-BR culture? I read lot of sites, but i couldn't implement on my project. Anyone could put a link to show me a valid implementation about culture? And why put...

bactch print for "Outlook calendar printing assistant"

I'm using "Outlook calendar printing assistant" to organize my daily work list then print into a paper every morning, just wondering if the print job can be done automatically through some kind of batch command line? ...

Trying to make/set up an events calendar in Wordpress & it's not quite what I need

So I've tried a bunch of plugins, to no avail. Wordpress continues to foil me with its default behaviours. Here's what's needed: An events page, which lists the events, and has the time of the event (NOT the time it was posted), location, and an excerpt/blurb/summary a left sidebar of said events page needs to have a calendar which sho...

converting a calendar date to a string?

I am trying to get the program to call up the current date, add 30 days to it, and then out put that date as a string. // Set calendar for due date on invoice gui Calendar cal = Calendar.getInstance(); // Add 30 days to the calendar for the due date cal.add(Calendar.DATE, 30); Date dueDate = cal.getTime(); d...