WP7Tips

Showing posts with label WP7Tips. Show all posts

In last few articles I was discussing on Launchers and Choosers of Windows Phone 7. In today’s blog post I am going to continue on that again. This time we will discuss on “SmsComposeTask” of the WP7 SDK, which you can use to create SMS from code.

 

SmsComposeTask launches the Messaging application with a new SMS message displayed and requires user intervention to send the message. Continue reading to learn in depth of the API implementation and uses of the API.

Published by on under CodeProject | Mango

In last two blog posts we learnt how to save email address in WP7 and how to send email. We also learnt the internal implementation of the APIs used by the Windows Phone 7 SDK.

 

Today in this blog post we will explore how to retrieve email address from contact list with a simple example (including the internal implementation of the API). Don’t forget to provide your feedback. If you have any queries, let me know. I will try to answer you as early as I can.

Published by on under CodeProject | Mango

In the last blog post we learnt “How to Save Email Address in WP7 using the SaveEmailAddressTask?” where we shared code snippet of the internal implementation of the SaveEmailAddressTask along with the code implementation of a demo app.

 

Today in this blog post we will learn how to compose an email using the Windows Phone 7 SDK class called “EmailComposeTask”. Also sharing the decompiled version of the class, so that you can know the SDK implementation. Continue reading and at the end don’t forget to leave your feedback.

Published by on under CodeProject | Mango

Do you want to build an application which will allow you to save an email address? Then this post will allow you to understand the API of Windows Phone 7 SDK. In this post we will learn about SaveEmailAddressTask class and it’s API with a simple demo.

 

Continue reading to learn about it. Also, I will share the code snippet of the internal implementation of the SaveEmailAddressTask, which will help you to understand the actual implementation of the API of WP7 SDK.

Published by on under CodeProject | Mango

In the last blog post, we learnt “How to Call a Number in WP7 using the PhoneCallTask?” We also learnt, “How to Save Phone Number in WP7 using the SavePhoneNumberTask?” So, how can you programmatically retrieve a phone number from existing contact list?

 

This post will help you to understand it. After reading this post, you will be able to programmatically retrieve the phone number in your application (this requires user’s interaction) using the PhoneNumberChooserTask. Don’t forget to read the complete post as this will help you to know about the internal implementation of the SDK API too.

Published by on under CodeProject | Mango

Last day we learnt “How to Save Phone Number in WP7 using the SavePhoneNumberTask?” There we discussed on the basics of the API and details about the implementation stuff with step-by-step details.

 

Today in this small blog post we will learn how to call a number programmatically in Windows Phone 7 by using the PhoneCallTask API. We will also know what are the limitations of this API class. Continue reading to know further.

Published by on under CodeProject | Mango

Do you want to integrate a task in your Windows Phone 7 application that will help users to save their contact details e.g. a phone number in their Contact List? If you want to do this, there is a class called SavePhoneNumberTask which will allow you to implement that task.

 

This small post will help you to understand the basics about the API and details about the implementation stuff with step-by-step details.

Published by on under CodeProject | Mango

In last two blog posts we learnt how to programmatically Save Contacts in WP7 and Retrieve Contact Information. Now after these, you may want to programmatically search for specific contact. So how to do this?

 

Windows Phone 7 SDK provides that API for you. You can use that API to asynchronously search for a contact by different parameters. Continue reading the complete post to learn more about the class and search mechanism. Don’t forget to read out my other blog posts too.

Published by on under CodeProject | Mango

In the last post, we learnt “How to Save Contact in WP7 using the SaveContactTask?” Today in this small post we will learn how to retrieve saved contacts in WP7 using the Windows Phone 7 SDK APIs.

 

If you are developing any application for Windows Phone 7 and wants to provide user an option to get any contact details (e.g. Contact Name, complete Address of the Contact), AddressChooserTask class will allow you to get such information of the selected contact. Continue reading to get more details about this API.

Published by on under CodeProject | Mango

Windows Phone 7 SDK exposes API to provide user option to save any contact to the Contact list. In your app you may want to include contact saving option. This small post will help you to understand the API and after that, you will be able to use it in any of your applications.

 

The SDK has a sealed class called SaveContactTask, which you can use to implement this feature. Continue reading to know more about the class and implementation steps.

Published by on under CodeProject | Mango

Sometime in our application, we want to launch the Media Library of the Windows Phone 7 device and also want to provide user the option to view any existing image from that library. So if you want to do this, how will you implement the code?

 

Windows Phone 7 SDK provides provides API to do this. Using the PhotoChooserTask you can actually launch the photo chooser application and handle the selected image. Continue reading to read more about this process from this small tips.

Published by on under CodeProject | Mango

In last two post, we learnt about How to search in the WP7 Marketplace using the MarketplaceSearchTask? and How to Launch the WP7 Marketplace Hub using the MarketplaceHubTask? Today in this small post, we will learn how to launch the application details page.

 

If you searched application in Marketplace using the marketplace client, you would familiar about the application details page. The details page consists of information about the application including install & share button and reviews section. You might want to add that page in your application. Continue reading to learn about the API.

Published by on under CodeProject | Silverlight

In our previous Windows Phone 7 tips, we learnt how to search applications and/or music in the WP7 marketplace using the MarketplaceSearchTask API.

 

Today in this post, we will learn about the MarketplaceHubTask API to launch the Windows Phone 7 Hub client in your phone device. Using the code, you can also launch it in the phone emulator. Continue reading to learn more about it.

Published by on under CodeProject | Silverlight

In your Windows Phone 7 application, you may want to search for some application or music rom WP7 Marketplace. How will you do this? This small tips on Windows Phone 7 marketplace related API will help you to write code in your application.

 

You can easily achieve this by using the Marketplace Launchers task to call the search API. Continue reading to know more about it.

Published by on under CodeProject | Silverlight

If you have a Windows Phone 7 device and you are a WP7Dev, you may want to develop and test your WP7 application inside your device. All the time, the simulator doesn’t help us to test our application and hence you need the hardware device. The Phone 7 by default comes as a locked for development, but if you want, you can easily unlock it for testing and debugging purpose.

 

In this small post, I will help you to understand each steps in detail. Continue reading to be familiar with the process.

Published by on under Tips | WP7

If you are using Windows Phone 7 and want to activate the “Call Waiting Service”, this post will help you. You might came to this page by search engines if didn’t find any settings to activate this service in your phone. This post is not related to any sort of programming but just a small usages tips.

 

Continue reading and activate the service right now if you are searching for this.

Published by on under Tips | WP7

Sometime we may need to download images from external location to our Windows Phone 7 Media Library. Few days ago, I tried to implement the same in one of my application. Initially, I thought that it is very easy to implement but later noticed the complexity. I did few R&D with Mayur Tendulkar to implement the same and came up with a solution. Thanks to Mayur for helping me out.

 

It this post, I will discuss the way of implementation of it with the full code snippet. Continue reading to check out the downloading mechanism of external images to Media Library.

Published by on under Silverlight | WP7

Few days ago, I started with the Windows Phone 7 tips and published a post on “How to Pin an Application to the Start Screen?” where we demonstrated how to pin an application for easy access.

 

Today in this post, we will learn how to unpin the pinned application from Windows Phone 7 start screen. So, read on to learn it. Again, this is a beginner level tips & tricks to start with Windows Phone 7 device.

Published by on under DZone | Mango

Today in this blog post, I am going to start up few Windows Phone 7 tips which will be handy for you if you are a beginner and just started exploring your device.

 

In this first tips & tricks, I will show you how to pin an application from your application list to the start screen of your Windows Phone 7 device. As I told, this post is absolutely for the beginners.

Published by on under CodeProject | DZone

Do you want to integrate the network connection settings page (like: Airplane, Bluetooth, Cellular and/or WiFi) in your Windows Phone 7 application? Then this article will help you step-by-step to understand and integrate it.

 

Connection Settings page are those, where you can configure your connection types and various parameters of the connection. Windows Phone 7 SDK exposes the APIs for you to integrate them in your application. In this tutorial, we will discuss about these with a nice demo. Read further to know about these settings page and integration steps to the application.

Published by on under Silverlight | Tutorial