08/12/2014 by Nitesh

Display Live Preview of your Webcam Stream in Windows Store App

Friends, In this post, we will see how simple it is to stream a live preview from your webcam on a small screen in your Windows store App. You can use it to display user’s picture in the side of a screen or also can show what the camera is focusing on at a given…

Continue Reading »

05/12/2014 by Nitesh

How To Get Access to Front & Back Camera in Windows 8.1 Store App

Friends, In this post, we will see how can we get access specifically to Front camera/Back camera in our Windows 8/8.1 Store App. To get the access, we will use DeviceInformation class defined in Windows.Devices.Enumeration namespace. Below is the code snippet for the same – DeviceInformationCollection webcamList = await DeviceInformation.FindAllAsync(DeviceClass.VideoCapture); DeviceInformation frontWebcam = (from webcam…

Continue Reading »

21/11/2013 by Nitesh

How to change default port of IIS Manager from 80 in Windows8.1

Friends, After installing IIS on any Windows machine, by default IIS Server listens on port 80. The same is true with Windows8.1. For most of the times, it works fine. However, in some cases we need to modify this port from 80 to a different port. One of the Scenarios where you might need to…

Continue Reading »