28/12/2014 by Nitesh

How To Delete a File From FTP Server in C#

Friends, In my last post, we saw how can we retrieve the list of all files & folders from a FTP server using C#. In this post, we will see how can we delete a file from FTP server using C# from within your Console or Windows Forms Application. Here’s the code – private string…

Continue Reading »

27/12/2014 by Nitesh

How To List All Files & Directories From a FTP Server in C#

Friends, In this post, we will see how we can retrieve the list of files and directories from a FTP server in C#. We will make use of FtpWebRequest class to perform this action. FtpWebRequest class is defined in System.Net namespace. This means you need to use this namespace at the top of your program…

Continue Reading »

26/12/2014 by Nitesh

How To Add a Sub-Domain to Your Website Using Control Panel in Arvixe

Friends, This blog post will explain you the steps required to create a new sub-domain in your top-level domain from Control Panel of your Arvixe hosting. To start with, log into your Control Panel of Arvixe hosting and follow the below steps – Click Domains Click Add Domain Click Sub-domain Perform the following steps on…

Continue Reading »

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 »

1 10 11 12 13 14 38