Questions tagged [vcalendar]

vcalendar was the preceeding standard prior to icalendar (rfc5545 which obsoleted rfc2445).

icalendar RFC (http://www.ietf.org/rfc/rfc2445.txt) states "This memo is based on the earlier work of the vCalendar specification for the exchange of personal calendaring and scheduling information. In order to avoid confusion with this referenced work, this memo is to be known as the iCalendar specification."

to be noted:

174 questions
4
votes
1 answer

Creating VCS file via C# but either outlook or C# don't like my dates

I'm trying to create a .vcs file in C#. Basically in outlook if you add a calendar appointment it creates a file that in outlook looks like this: You can actually export this file, right click on it and open it up in your favorite text editor. It…
oJM86o
  • 2,108
  • 8
  • 43
  • 71
3
votes
1 answer

How do I create a webcal in php so that user can subscribe to it?

I'm creating a resource planner and I want to enable webcal subscribing for the resources. Right now I don't have a clue of how to develop a webcal subscribing system in PHP. Are there any documentions/library or code snippets you can share with me?
einstein
  • 13,389
  • 27
  • 80
  • 110
3
votes
1 answer

Using v-calendar with events coming in time and date format

when I look for the api event, the time would be ex: 12:00 the v-calendar abbreviates to just 12, if I look for the time that password the minutes it brings complete, since it seems to be a vuetify v-calendar behavior, someone already solved? enter…
3
votes
1 answer

Vue.js - How to set only available dates in V-Calendar?

I'm using the V-Calendar and Vue.js for printing a calendar showing the available dates. My code:
sdfgg45
  • 1,232
  • 4
  • 22
  • 42
3
votes
1 answer

Vcalendar shows a minute time difference in Outlook Desktop Application

I'm trying to create vcalendar file using the PHP script. The vcalendar file get generated correctly and recognized by the Gmail and Outlook Web application but whenever I try to open the vcalendar file in outlook Desktop Application it adds one…
aMoL Thite
  • 951
  • 1
  • 7
  • 18
3
votes
1 answer

Google Calendar ICS file multi event import not working

I have tried every example and every solution I have found online and have not been able to get an ICS file to import events into google calendar, ONLY if there are multiple events. This works for one event for google calendar, but not 2 or more. I…
Adam
  • 31
  • 4
3
votes
2 answers

HTML in iCal using iCal4j

Is there a possibility to add html to a description from a vevent. I generate a VCALENDAR with a VEVENT with a description. I use Ical4j to sent the email with ICS This is what I try to do: BEGIN:VCALENDAR PRODID:-//----//Calendar…
Michel
  • 9,220
  • 13
  • 44
  • 59
3
votes
1 answer

Outlook 2003 not accepting .ics file

I am having trouble importing the vcalendar "script" below into Outlook 2003. What I am doing is using php's mail() function, and essentially sending a message that will contain this calendar, and thus create an event. Unfortunately, the team I am…
user511292
  • 63
  • 7
3
votes
1 answer

Mulit-Day All-Day Event

I am having issues getting the right syntax for an all day event which spans multiple days. Here is my ICAL…
Louis W
  • 3,166
  • 6
  • 46
  • 76
3
votes
3 answers

How to get response of vcalendar meeting invitation request

I am sending calendar meeting invitation via PHP by following…
Jass
  • 3,345
  • 3
  • 24
  • 41
3
votes
1 answer

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
Mick
  • 2,840
  • 10
  • 45
  • 61
3
votes
1 answer

VCS File description in html

we have created a vcs file using the following code. Dim mstream As New MemoryStream Dim writer As New StreamWriter(mstream) writer.AutoFlush = True GetvCalendarText(writer) …
Mahesh KP
  • 6,248
  • 13
  • 50
  • 71
3
votes
0 answers

Can I generate something like a vCalendar file that adds a Task instead of a Calendar Item to Outlook (2010)?

At our company we use a CRM system that we built ourselves using ASP.NET. One of the functionalities is that it allows users to download vCalendar (.vcs) files for appointments they make in the CRM system so that they can easily add these same…
Kristof Claes
  • 10,797
  • 3
  • 30
  • 42
2
votes
2 answers

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…
christo16
  • 4,843
  • 5
  • 42
  • 53
2
votes
0 answers

How to attach a file to a vcalendar event?

I am trying to attach a file to a calendar event invite generated using Java. I want to attach a blob object as an attachment,but I unable to attach even a basic file. I tried using the ATTACH tag in the calendar event template as…
1
2
3
11 12