Hi,
I'm not quite sure what field to use when adding more than 30 days to a Java Calendar object. Is there any difference in between Calendar.DAY_OF_MONTH and Calendar.DAY_OF_YEAR?
Example:
GregorianCalendar d = new GregorianCalendar();
d.add(Calendar.DAY_OF_YEAR, 90);
vs
GregorianCalendar d = new GregorianCalendar();
d.add(Calenda...
i have invoked blackberry calender from my application
can anyone tell me how to fetch :
date
duration
notes
from the selected date
my code :
MenuItem importCalender = new MenuItem("Import from Calender",100,11)
{
public void run()
{
UiApplication.getUiApplication().invokeAndWait(new Runnable()
{
publ...
Hi there,
I have the following scenario:
arrival and departure dates have to be selected on a form, through 2 textboxes with a calendar extender each.
I validate the entries to check that no date before today is selected and to check that the departure is after the arrival. I used a rangevalidator and a comparevalidator.
In IE, Firef...
I am not sure why other people have not asked this before. But have you notice that the asp:Calendar shows an extra week at the end?
For example if the VisibleMonth is set to 2010-03-01 and FirstDayOfWeek to Sunday:
It will show 6 weeks.
Feb 28 to March 6
March 7 to March 13
March 14 to March 20
March 21 to March 27
March 28 to Apri...
I am using google calendar API to sync google calendar with our custom calendar. Right now I am trying it with a crude way by asking user if he/she wants to sync their calendar with google or not. If they say "yes" , I show them login screen where they have to enter their google user id and password and the calendar will be synced. But n...
I'd like to offer users of my web platform calendars, and also offer group calendar and public calendar features. I know of Google Calendar API, of course, but that would require all my users to have Google accounts (although, I guess the question is who does not these days). I am wondering if there are any other alternatives? I can writ...
I'm struggling with writing a python script that automatically grabs the zip fail containing all my google calendars and stores it (as a backup) on my harddisk.
I'm using ClientLogin to get an authentication token (and successfully can obtain the token).
Unfortunately, i'm unable to retrieve the file at https://www.google.com/calendar/...
Does anyone know an algorithm to either calculate the moon phase or age on a given date or find the dates for new/full moons in a given year?
Googling tells me the answer is in some Astronomy book, but I don't really want to buy a whole book when I only need a single page.
Update:
I should have qualified my statement about googling a ...
Greetings people,
I'm going to start working on project developed in ASP.NET.
In this project I need to show the data in a month calender like Google's calendar or something like that.
So my question is:
Is there any control I can use to do this thing?
If not, what do you suggest?
...
Below is a partial table row that will create a line row of 3 columns.
Two columns in each side is links, left is previous year and right is next year links.
Center is links for january thru december.
When you click a month links, the calendar will show that month you've clicked in the current year the calendar is on. For example, the ...
ExtendedDateChooser class is great solution for simple event calendar used in my flex project. You can find it if google for "Adding-Calendar-Event-Entries-to-the-Flex-DateChooser-Component"
with a link of updated solution in comments of the post. I posted files below.
Problem in that calendar is text events are missing when month is ch...
How i can use the maya calendar in Java?
...
Basically I want to copy the behavior in iPhone's Calendar where the day of week (Mon, Tue, Wed) is on the left side of the table's section header (left justified) while the formatted date (Apr 1, 2010, May 1, 2010) based on locale is on the right side of the table's section header (right justified).
I was thinking of inserting a variab...
We need to implement scheduling subsystem. And we plan to integrate subsystem with our desktop and online applications. But we would like to reuse as many components as possible. One component that we want to reuse is the one for displaying date periods, calendar with events. Most scheduling systems like Outlook, Google Calendar have sim...
How can I get the current local wall clock time (in number of millis since 1 Jan 1970) in London? Since my application can run on a server in any location, I think I need to use a TimeZone of "Europe/London". I also need to take Daylight Savings into account i.e. the application should add an hour during the "summer".
I would prefer to ...
i need to automatically change the RadDatePicker from normal calendar to Hijri. the idea is that i need to show a hijri calendar if the users's browser language is set to arabic.
i was able to do this when using a normal calendar but not with telerik RadDatePicker.
any ideas?
...
How do you find the number of days in a month in Java?
...
I have a planning structure on two tables to store available slots by day, and sessions.
A slot is defined by a range of time in the day.
CREATE TABLE slot (
`id` int(11) NOT NULL AUTO_INCREMENT
, `date` date
, `start` time
, `end` time
);
Sessions can't overlap themselves and must be wrapped in a slot.
CREATE TABLE session (
`i...
What would you recommend me to do in order to accomplish that?
I'm developing a Scheduling software and i love google's interface (view in day, week, month) but i'm thinking in doing everything from ground zero. Is there a way to use pre-created controls or something much more easy than my idea ?
Thank you all.
It's for web with asp.net...
I am using OAuth with google data api. We have a portal only for authorized users. So when users are logged in and if they are accessing calendar page, they will be asked if they want to sync their calendars with google calendar. If yes, they will be redirected for authentication. Once user has granted access, google appends OAuth_Token ...