Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the PIM Demo sample from Blackberry inside my application to add event to the device's calendar. The problem is there is no reminder or any dialog boxes popped up when the event starts.

Is there any way to set this manually? Or is there anything wrong with the programs?

I would like to have any form of reminder, could be an alarm, dialog box, or even just a notification will do.

Regards,

share|improve this question

2 Answers

To have a reminder you must set the Event.ALARM field in the PIM Event to the number of seconds before the start of the event you want the remider:

Event.set(Event.ALARM, 0, 0, 900);

Will set a reminder for 15 minutes before the event.

share|improve this answer
Where do I add this statement? Inside the onSave method? Or somewhere else? – ocinisme Mar 15 '12 at 10:37
Yes, somewhere before _event.commit(); – Core.B Mar 19 '12 at 20:48

check this link it will help you in Alarm/Reminder.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.