In this post we will show you the way to Restore and Preserve Page state for windows phone application page. Let us put some control on the phone application page. To bind values of these controls, let us create Data class as below, There are three properties to bind values to three controls of theContinueContinue reading “Restore and Preserve Page State for Windows Phone 7.5 or Mango Phone”
Author Archives: Dhananjay Kumar
CRUD operation on Windows Azure table storage as WCF Service
You may have come across requirement of performing CRUD operation on Windows Azure table storage many times. If you have encapsulated functions performing CRUD operation on Azure Table Storage as operation contract of WCF Service then any type of client can work against azure table storage. You may always want to architecture your application asContinueContinue reading “CRUD operation on Windows Azure table storage as WCF Service”
Schedule the Tile update in Windows Phone 7.5 or Mango Phone
Read here about Live Tiles in Windows Phone 7.5 or Mango phone You may have a requirement to schedule the update of the tiles. It is very much possible in Windows Phone 7.5 or Mango phone. You can set UpdateIntravel as below, You can set UpdateRecurrence as below, In last post we discussedContinueContinue reading “Schedule the Tile update in Windows Phone 7.5 or Mango Phone”
Live Tiles in Windows Phone 7.5 or Mango phone
In Windows Phone 7 Live tiles was only possible through Push notification. However Windows Phone 7.5 (code name: Mango) allows to update, create primary and secondary tiles without push notification. In this post, we will walkthrough on the same. To create and update live tiles essentially you need to work with below classes StandardTileData andContinueContinue reading “Live Tiles in Windows Phone 7.5 or Mango phone”
Uploading Stream in AZURE BLOB
In this post I will show you to upload stream to Azure BLOB. Set the Connection String as below, Function is as below, You need to set required content type. If you are uploading image then content type would be like below, To use this function you need to pass , PublicContinueContinue reading “Uploading Stream in AZURE BLOB”
Downloading and saving a File from Windows Azure BLOB storage
In this post I will show you to download a file from Azure BLOB. Set the Connection String as below, Function to download and save file is as below, you need to pass Connection string to BLOB storage Public Container name BLOB name or file name Thanks for reading. I hope this post was useful
Creating and updating EXCEL file in Windows Azure Web Role using Open XML SDK
Problem Statement You need to create and upload EXCEL file in Windows Azure Web Role. Since there is no MS Office present on AZURE VM so you cannot use Office InterOP Dll. So you are left with option of Open XML SDK to create and update Excel file. Solution Approach Create and update Excel fileContinueContinue reading “Creating and updating EXCEL file in Windows Azure Web Role using Open XML SDK”
Charts in Windows Phone 7
Today morning I got a call from SQL Server Guru Pinal Dave and conversation was as below. So, I started working on this. I decided to go ahead with hard coded data as below, And function returning data is, To add chart control on XAML, I added namespaceContinueContinue reading “Charts in Windows Phone 7”
Fetching Web Roles details using Windows Azure Management API
If you are writing some tool to manage Windows Azure portal then fetching information about Roles may be frequent requirement for you. In this post, we will discuss the way to Fetch below information about a Web Role or Worker Role using Windows Azure Management API. RoleName InstanceName InstanceStatus Any client making call to AzureContinueContinue reading “Fetching Web Roles details using Windows Azure Management API”
Nested ListBox binding in Silverlight and Windows Phone 7
While creating an application I came across a requirement when I had to put a listbox inside a list box and then I had bind that nested listbox dynamically. For example say, entity class called Roles as below, And you are using Role class in another entity class called Subscription as property We need toContinueContinue reading “Nested ListBox binding in Silverlight and Windows Phone 7”