Hi I'm using the calendar base extension (cal) for displaying my calendar in a TYPO3 website.
I configured an external calendar and it imports all events correctly. How can I automatically reload the events from this external ics-calendar?
thanks!
...
Hello,
I'm working on a PHP app, and I'm trying to find the best way to set up a calendar system.
First let me describe the intended function of the system: The application has multiple users who can login simultaneously. Each user should be able to add their own events and display them on their "profile." Also, on another page, the ev...
I'm syncing the Google Calendar with my application (I store events in a database). When an event is updated I can easily find the last updates by sorting the event feed on the 'updated' order.
However, if an event is removed / deleted, how can I track this update from the feed?
...
How to do it. For example the calendar for march will also show days from feb and april. I dont want them to be shown. How to do. Anyone have sample code?
...
I've set up a publishing site for a project, but the calendar isn't available to me.
Anbody know how to make the default SP calendar available?
...
Hi,
I would like to ask if I have a table of events on my database, e.g.
description | startdt | enddt
event1 | 2010-04-01 10:00:00 | 2010-04-01 13:00:00
event2 | 2010-04-09 14:00:00 | 2010-04-09 18:00:00
event3 | 2010-04-30 11:00:00 | 2010-05-02 16:00:00
I have already created a php calendar, how can I dis...
Is it possible to authenticate to google calendar (when you know the username/password) using its JavaScript API?
I tried calendarService.setUserCredentials(username, password); but it didn't work
...
I have been tasked to read in some data from some weird old system.
The system contains many dates but they are all oddly formatted. They are integer numbers ranging from approximately 55,000 to 80,000.
I know two dates for certain:
58,112 equals February 5, 1960 (originally written as Feb 2,1960 [*])
61,439 equals March 16, 1969
[*]...
Hi!
How to change header background of a calendar control? I need only top, not all area.
Thanks a lot!!
...
I am working on the prototype for a scheduling application on an intranet system. The application is for scheduling and tracking promotional workers at various locations on various dates.
Currently, only for prototyping, I am generating a data table of location/date, and from this I iteratively build an HTML table (asp:Table control). O...
I need to minus 365 days in a given date (givenDate)-
Calendar calendar = Calendar.getInstance();
calendar.setTime(givenDate);
calendar.add(Calendar.DATE, -365);
Am I right?
...
Hi,
I am creating a calendar in google calendar using Google API ver 2.
Problem i am facing is:
I am getting all calendar as "ALLDAY".
I tried below code:
When eventTime = new When();
eventTime.AllDay = false;
entry.Times.Add(eventTime); // i am not setting dates as i am assigning them in recurrance data.
How to make all day event t...
I'm trying to select and de-select dates on a C# Web Calendar control.
The problem I have is that I can select or deselect dates except when there is only a single date selected.
Clicking on it does not trigger the selection changed event, so Ineed to do something on the dayrender event but I'm not sure what or how.
Edit: Added the Pr...
Hi All! ;-)
my question is:
assuming we have a calendar_table with UNIX datestamp date_column, i want retrieve the event with the closest proximity to the today date.
So, for example if there is no event today, keep the closest one based on it's date!
UPDATED
probably i need to be more clear, i need to retrieve not just one event, b...
Hi,
I am using below code to create a reminder in Google calendar (using Google API ver 2 for c# ):
EventEntry entry = new EventEntry();
entry.Title.Text = "testing from .NET";
entry.Content.Content = "testing from .NET";
String recurData =
"DTSTART;TZID=America/Los_Angeles:20071202T080000\r\n" +
"DTEND;TZID=Ame...
Does anyone know if it's possible to display items on a calendar view (on a document library) in SharePoint based on properties of a folder (which is a custom content type in itself) rather than for the files in the document library.
For example:
Folder1 Expires=20/4/2010
Folder2 Expires=21/4/2010
For these folders, there should be tw...
I have the two following datepicker objects but I cant get what I want as I am getting stuck with the minDate and maxDate options:
This is to restrict the dates to future dates.
What I want: restrict the dates from current date to 30 years time.
What I get: restrict the dates from current date to 10 years time.
$(".datepickerFuture...
Hi, we are trying to create a calendar function in python. we have created a small content management system, the requirement is, there will be a drop down list on the top right hand corner of the website, which will give the options - Months - 1 month, 2 months, 3 months and so on..., if the user selects 8 months then it should show the...
Operating system : WinXP
Program and version you use to access Google Calendar (FF3.5):
I'm developing a script (based on an existing vCal ASP.NET class I found online) to generate an .ics file. This file works perfectly when importing to Outlook 2003. When I try to import to Google Calendar, I get the following error:
Failed to impo...
Hi, I've looked through other questions but i don't think this has been asked before:
I have an email client i'm building in the .NET framework, and would like to automatically create google calendar events (just like in gmail). Is there a way to feed an email message (i.e. a string) and automatically identify if there is a possible eve...