vcalendar

Parsing iCal/vCal/Google calendar files in C++

Hello all, Can anyone recommend a ready-to-use class/library compatible with C/C++/MFC/ATL that would parse iCal/vCal/Google calendar files (with recurrences)? It can be free or commercial. Thanks in advance! ...

Not getting correct time from UniversalDateTime

I send a vcal through mail in web application with convert datetime to universal datetime. If i run web application locally (local sevser in India) i get correct time in my vcal. But run appication live (server in US) then not get corret time with a difference of 1 and half hour.Please suggest me. code : Dim result As StringBuilder = N...

vCalendar for OutLook

I am new to this, I am trying to save a reminder to outlook. But it is not doing anything. Wondering what is wrong in my code. Here is my code DownloadAsVCS(BuildVCSFile(sVcalType, sVcalDate)) Public Function BuildVCSFile(ByVal sVcalType As String, ByVal sVcalDate As String) As String Dim beginDate As Date = #1/7/2005 4:00...

vCalendar - show as (Free/Busy/Tentative/Out of Office)

I sent a vCalendar message to Outlook which results in a new Event in Outlook Calendar. How to set "Show As" field? (Free/Busy/Tentative/Out of Office) ...

Response.ContentType = "text/x-vcalendar"

I am trying to generate a vCalendar but i am getting an error "response is not available in this context" on Response.ContentType = "text/x-vcalendar" . I am using vb.net , 1.1 framework. Any ideas? -MIthil ...

Single vcal for booking on multiple day.

I has a list of date time without following any pattern and want to genrate a single vcal for book schedule in MS-Outlook for these dates. Is it possible and how ? Please suggest. ...

Parse VCALENDAR (ics) with Objective-C

I'm looking for an easy way to parse VCALENDAR data with objective-c. Specifically all I am concerned with is the FREEBUSY data (See below): BEGIN:VCALENDAR VERSION:2.0 METHOD:REPLY PRODID:-//CALENDARSERVER.ORG//NONSGML Version 1//EN BEGIN:VFREEBUSY UID:XYZ-DONT-CARE DTSTART:20090605T070000Z DTEND:20090606T070000Z ATTENDEE:/principals/...

Difference between iCalendar (.ics) and the vCalendar (.vcs)

I want to send booking inforamtion through mail in an attachmnet to add in MS Outlook. Which format is better? For specailly MS Outllok 2003 ? ...

Is there a vCalendar microformat validator/sanity checker?

I just put up a new calendar in the vCalendar microformat on one of my websites. However, I don't know how I can check if the format is valid and the dates are right. Apparently, I can't import it directly to Google Calendar. Is there an easy way to transform vCalendar data into a real calendar easily? ...

vCalendar file doesnt work with Outlook

Hi, I'm using vcs file on my website to import the event to outlook (Automatically, no copy and paste) ... some people are complaining that it doesnt work (i dont know if it works or not for the rest of the users ). So I'd like to ask if you see any mistakes in my file: I use these headers: header("Content-Type:text/x-vCalendar;"); ...

With .ics files can I delete old events?

Im currently working on an .ics export from our application. Can I somehow delete old events, so in my first import into outlook I have 152 events and during my second import I only have 100 events. Then I would like the import to automatically delete all 52 events from Outlook, is this possible? I know that I can make events canceled,...

How to Create "Add to Calendar" Link on Web Page for iPhone

Many calendaring programs (Outlook, iCal) support vCal for downloading event information and adding it to your calendar. Others can use the vCalendar microformat to extract data. Neither of these, however, seems to be supported on the iPhone. Is there any functional equivalent that will allow me to list event information on a page and h...

Setting Intended Busy Status in Outlook Calendar Invitations via X-MICROSOFT-CDO-BUSYSTATUS:TENTATIVE

I'd like my web site generated invitations to mimic the behavior of those generated by Outlook itself. Specifically, when I send an invitation I'd like Outlook to mark the calendar item as TENTATIVE until accepted, and then OOF when accepted. This is accomplished by Outlook itself via the setting of various X-MICROSOFT-CDO extensions to...

Google Calendar .ics import Standards

I have a .ics file that I generate from our database that works correctly in iCal, but is flaky in Google Calendar. Sometimes Google Calendar will import the file, but it does not pick up all the events. Does anyone have any tips on the REQUIRED fields that Google needs? I am at a loss here as to why sometimes it won't import, or why ...

.ICS + Outlook = nightmare? Can anyone help?

I have a database that puts out an .ics file that looks like this: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN BEGIN:VEVENT UID:[email protected] DTSTAMP:20091211T175956Z DTSTART:20091106T200000Z DTEND:20091106T230000Z SUMMARY: END:VEVENT BEGIN:VEVENT UID:[email protected] DTSTAMP:20091211T175956...

VCS File Downloading Issue with IE

I am working on a http based (NOT Secure) Web Application. In this, I have provided a provision to add some appointment to the Client's outlook calendar. I am creating the .vcs file dynamically when clicked on a hyperlink. The code of generating .VCS file is: string calendarFormat = GetVCSFormat(); Response.ContentType = "text/calendar...

iCalendar ATTENDEE

Hi is it possible to specify a 'nickname' as the ATTENDEE in Vcalendar . so that instead of the email address appearing in the email 'required' field it would display a more friendly name ? thanks for any help Mick ...

Create "downloadable" vCalendar object for Outlook with vObject (Python)

I need to be able to offer "downloadable" events for Outlook, via vCalendar objects - if I'm not mistaken. From the research I've done, I've been pointed at using vObject. I've looked at their usage examples, but having no prior experience with the format, it's not clear to me how to solve my problem, as I'm not sure what fields are av...

can/should iCal property parametrs be escaped?

specifically, the CN (common name) parameter, e.g. ORGANIZER;CN=John Doe,Eng:mailto:[email protected] The RFC is vague on this, IMHO. It is very clear about property values of type TEXT, but for this parameter it just says "The parameter value is text". Anyways, the escaping specified for TEXT type doesn't seem complete for parameter val...

Is it possible to book Outlook Resources using vcalendar format?

I'm trying to send a meeting request to a public outlook calendar, but I need to request it as a Resource. Is this possible to do using a vcalendar request? ...