Year: 2012
-
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, you…
-
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 to…
-
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 greater…
-
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 in…
-
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,…
-
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 get…
-
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 with…
-
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 take…
-
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 , you…
-
Getting Started with Windows Phone 8
Much awaited Windows Phone 8 SDK got launched on 30th October 2012. And as all we expected there is HTML5 support in Windows Phone 8. To get it started navigate here to download Windows Phone 8 SDK and then from the New Downloads section download Windows Phone SDK 8.0. There are two options available to…