Sunday, June 7, 2015

Alternative way for enable developer mode in windows 10 device

Hi , Have you ever seen bug when going to enabling developer mode in windows 10 preview (IP)? The application crashes. Now how we enable developer mode for application development ? There is option available. When we are deploying apps with side loading in windows 8/8.1 we are doing the policy editing to allow app installation in client machine. the same is helpfull here too Open your group policy editor  -> Computer Configurations->...

Saturday, April 4, 2015

Server Socket (TCP) With Microsoft Azure

When we working on the real time applications Microsoft azure provides the facilities to run our all kind of applications from oldest to latest technologies. With my earlier post i explained how to create SignalR applications for real time operations Today I'm gonna introduce create Server socket with the Azure . 1. Create new Azure Cloud project 2. Create new Azure Worker Role  with the solution. I named it as Socket Worker  3....

Sunday, March 8, 2015

MongoDb With C Sharp

This post is related with the post that I put few months ago, If you don't have already configured Mongodb on the machine Here is the post that I put Big question ?? How we use Mongo With C#? Is it hard? Its really easy to use Mongo in .NET , Here im going to create Asp.NET Web API project for demonstration. (You can use any type of project ) Then Install official MongoDb Driver for .NET it name as MongoCsharpDriver Nuget package Here...

Thursday, March 5, 2015

First SignalR Codes

Lets start SignalR with hands on , Not like usual chat demos in SignalR , We are going to make counter application which displays number of connected nodes to the web 1. Create New empty ASP.Net web project with visual studio 2. The install following Nuget on the Application    Microsoft.AspNet.SignalR  After Installing SignalR Your solution automatically get the Scripts for signal R 3. Add Hub Class to the solution...

Thursday, February 26, 2015

MethMvvm Visual Studio extention for C Sharp developers

meth - public method methp - private method propmvvm - mvvm property  Features & Benefits This will enable you to create methods in C# easily with double tap. And also enabled to crate MVVM properties easily. to do thet you have to create PropertyChange event . as follows,                                   public event PropertyChangedEventHandler PropertyChanged; ...

Friday, February 6, 2015

Prism MVVM pattern with Applcaition development

Prism is one of the design patterns which defined by Microsoft Patterns and Practices team for building composite Applications in C# , XAML (WPF,Store Applications etc ) . Why MVVM is not enough ? When we creating application with MVVM there is few questions and practices we need to figure out.  Should I use Prism to provide support for MVVM? Should I use a dependency injection container? Which dependency injection container should I use? When...

Tuesday, February 3, 2015

Tips to build Real time Applications (SignalR)

What is real time ? People who use the applications they need to see the actions one it happens . No delays or refreshing even it is desktop application, App , web or some other application. How its possible ? There is few options that developer can looking at. 1. Running background thread 2. Use SignalR 1st option that I describe here is not the best option in most of the times. Running background thread all times is resource consuming and...

Friday, January 23, 2015

Microsoft Windows 10 Event.

...

Sunday, January 18, 2015

Working in designtime with Data in MVVM

If we develop applications ( XAML based) we have a problem with see the data in design view. Every application become successful when its interface is attractive. If our application is based on internet or any other computational task there is difficulty on make Interfaces without running the application real time. Here is solution for it Use design time data binding which already with the xaml based application  Today we going to develop the...