windows phone api to access built in alarm - windows-phone-7

Is there any api to access the alarm settings of a windows phone 7 device. I am not looking for creating new alarms, but access settings of the default alarm app.
Thanks in advance

Nope, there is not. If you know 7.0 well, you can check out new functionality that was added in 7.1 to see if what you want has been added:
http://msdn.microsoft.com/en-us/library/ff637516(v=VS.92).aspx

Related

version change management in windows phone app

On updating app and publishing in windows phone marketplace,the phones do not show that update is available for some days.Is there any way to check the update in app from the code?
Im using the one from LocalJoost:
One of the biggest advanced: Zero lines of code solution for in-app checking for updates on Windows Phone
You can find the complete documentation here
Launching the MarketPlace Details task should trigger the update.
http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh394017(v=vs.105).aspx
This article must be helpful-
Checking for updates from inside a Windows Phone app

How to obtain the feature as in wallet in windows phone 8?

I want to obtain the Passcode protection feature in my app as it is in Wallet App which is already exist in Windows Phone emulator. After setting the pin and exit from the app. Then again start the app it ask for the Wallet pin. How to obtain that view in my app. My Question is whether it is default library in Windows Phone 8 or we have to built itself? if it is default then what we called it how to do access such thing? Thanks in advance.
This would have to be built by you or from a 3rd party - there is nothing in the SDK that implements the behaviour you are after.

Windows Phone: Add custom Account

is it possible to create a custom account (similar to Microsoft Account,Facebook, Twitter, ...) in Windows Phone so that a user can setup an account of my Custom Type and then can sync data and so on.
It's something similar to using a SyncAdapter in Android.
can I achieve this in Windows Phone ? what are the APIs to use ?
Thanks
No, there is no way to setup your own account type.
But in Windows Phone 8 your application can add its own contacts to People hub. Here is basic samples:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj207024(v=vs.105).aspx
And from this book you can get more details:
Windows Phone 8 Development Internals

Windows Phone 7 - Add alarm to default app?

I suspect the answer to this is no, but is it possible to programmatically add alarms into the default alarm app on Windows Phone 7?
I'm hoping to avoid building a section of my app just to recreate the functionality in the existing app!
You can set alarms on the phone without having to use code of your own by using the Phone.scheduler namespace and initializing a new alarm instance.

WP7 Deeplink to Marketplace

Does anyone know what code to use specifically to jump from within a Windows Phone 7 application to the application's listing in the Marketplace?
Refer to the sample code for MarketplaceDetailTask here.
How to: Use Launchers for Windows Phone

Resources