Recently I was attending a user group event and one young developer came to me with question, could you help me in finding out how to work with Navigation App Template in Windows Store App? So in this post I am trying to explain step by step working with Navigation App Template. Very first startContinueContinue reading “How to work with Navigation App Template in Windows Store App with JavaScript”
Author Archives: Dhananjay Kumar
Steps to Enable Windows Azure Mobile Services
In this post we will take a step by step look on enabling Windows Azure Mobile Services in Windows Azure portal. To enable it login to Windows Azure Management PortalAfter successful login to the portal in the bottom click on the New button. On clicking of the NEW button under the COMPUTE tab, youContinueContinue reading “Steps to Enable Windows Azure Mobile Services”
Basic Operations on Windows Azure Table in Windows Azure Storage in Storage Client Library 2.0
In this post we will take a look on performing basic operations on Windows Azure table using Windows Azure Storage Client Library 2.0. To work with Windows Azure Storage Client 2.0 grab the library from NuGet package. Right click on the project and select Manage NuGet Packages. In NuGet Package Manager and type WindowsAzure.Storage toContinueContinue reading “Basic Operations on Windows Azure Table in Windows Azure Storage in Storage Client Library 2.0”
Error in installing Windows Azure Storage Client Library 2.0
To start working with Windows Azure Storage Client Library 2.0. I created a project and tried adding reference of Windows Azure Storage Client Library 2.0 using NuGet. When I tried installing, I got following error message. “Microsoft.Data.OData could not be resolved” This error message is clearly saying that you need to install Microsoft.Data.OData version greaterContinueContinue reading “Error in installing Windows Azure Storage Client Library 2.0”
XAML Bindings in Windows Phone 8
I thank my friend Suchit Khanna for co-authoring this article with me Data is an ubiquitous entity in today’s world of application development, present in some form or the other, and your application should have an intuitive UI that is able to bind to data as well as respond to any form of change inContinueContinue reading “XAML Bindings in Windows Phone 8”
OSMinVersion must have value 6.2.1 or higher in Windows Store Application
I was busy working with other stuff and after long time today I resumed my working with Windows 8 development. I opened an old project and directly press F5 to run the application on local machine. While I tried to run the application, I encountered with following run time error. Error message was as following,ContinueContinue reading “OSMinVersion must have value 6.2.1 or higher in Windows Store Application”
Installing Windows Azure SDK on Visual Studio 2012
In this post we will do walkthrough of installing Windows Azure SDK on Visual Studio 2012. If Windows Azure SDK is not installed on your machine then on launching of Visual Studio 2012 and selecting Cloud project template, you will get option of Get Windows Azure SDK for .NET. Click on that. You will getContinueContinue reading “Installing Windows Azure SDK on Visual Studio 2012”
Evolution of C Sharp Language: Picture Blog
I was working on something and suddenly a mail popped up. I did not know the sender but I found he/she was a job aspirant. I found him/her very impatient and gist of his/her mail was, “Sir tomorrow I got a job interview. Could you please help me with different versions of C Sharp withContinueContinue reading “Evolution of C Sharp Language: Picture Blog”
Method Caller Information in C Sharp 5.0
Before we understand Method Caller Information feature of C# 5.0, we need to understand Optional Parameter feature of C# 4.0. C Sharp 4.0 introduced Optional Parameter feature . According to this feature, in function call only required parameters are needed to be passed. If value of Optional Parameters are not provided then they will takeContinueContinue reading “Method Caller Information in C Sharp 5.0”
What is Namespace in WinJS
Let us first try to understand, why we need Namespace? I will try to explain you with an example, let us suppose you have a function named GreetingMessage in JS file named Library.js Now you need to use this function on default.js. When you try to call that function from other js file , youContinueContinue reading “What is Namespace in WinJS”