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.

Currently i am trying to create a alarm clock application in windows phone 7. Is there any way i can do it?? Can anyone of you help me with the code. Thanks

share|improve this question
1  
anythings possible! – harper89 Jul 12 '11 at 11:56
do you have any reference that i can look at?? – beny lim Jul 12 '11 at 11:57
Sadly no clock tutorail but might be able to dig something up. msdn.microsoft.com/en-us/library/ff431744%28VS.92%29.aspx – harper89 Jul 12 '11 at 12:16

closed as not a real question by pavium, tibur, Matt Lacey, Brad Larson, Bo Persson Jul 13 '11 at 21:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You can do this with the set of features introduced in Windows Phone 7.1 SDK (Mango). Following features will enable you to develop this application:

1- Background agents: You will need to run a piece of logic every couple of minutes to check if the alarm is due or not.

Scheduled Tasks Overview for Windows Phone

2- Notification: You will need to notify user about by showing a message on the phone and possibly playing a sound:

search for "Toast Notification Sample" in Code Samples for Windows Phone

also as [ZombieSheep] suggested: Reminder Class in Mango

3- Background audio play

search for "Background audio play Sample" in Code Samples for Windows Phone

4- Ringtones selection: let the user select which ringtone to use!

search for "Ringtones Sample" in Code Samples for Windows Phone

share|improve this answer
3  
...or plug straight in to the reminders functionality in Mango? msdn.microsoft.com/en-us/library/… – ZombieSheep Jul 12 '11 at 12:38

Here is a simple tutorial on WP7 alarms and reminders Windows Phone Multitasking–Scheduled Notifications

share|improve this answer
How do i add Microsoft.Phone.Scheduler namespace i couldnt find in when i choose ad reference uner .NET section – beny lim Jul 13 '11 at 0:49

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