Have you ever come across the requirement to fetch the URL of content current displaying on? Let us say there are 5 pages in your application and user is navigating across them. At any point of time if you want to fetch the URL of current page you can very much do that. Above lineContinueContinue reading “Getting URL of current page in Windows Phone dynamically through code”
Author Archives: Dhananjay Kumar
Setting start page of Windows Phone dynamically through code
I will start with saying , this post is small and sweet J I was working and come across a requirement to set start page of Windows Phone Application through code or dynamically. Essentially this one line of code will set the start page of the application. Say, you have a page called Page1.xaml andContinueContinue reading “Setting start page of Windows Phone dynamically through code”
Delete Secondary Tiles in Windows Phone 7.5 or Mango Phone
Before we will see the way to delete secondary tiles, I strongly suggest you to read these two articles Live Tiles in Windows Phone 7.5 or Mango phone Restore and Preserve Page State for Windows Phone 7.5 or Mango Phone Assume we are navigating to a page called Page1.xaml from the secondary tile. A commonContinueContinue reading “Delete Secondary Tiles in Windows Phone 7.5 or Mango Phone”
Restore and Preserve Page State for Windows Phone 7.5 or Mango Phone
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”
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”