Tag: Visual Studio
How to Download and Install Visual Studio Code for Windows ?
This article will explain in simple steps on downloading and installing the Visual Studio Code for Windows in Windows 8.1 . How to Download and Install Visual Studio Code for Windows ? Follow the below steps to download Visual Studio Code Editor and install it on Windows PC. 1. Download Visual Studio code for Windows from http://go.microsoft.com/fwlink/?LinkID=534107 .2. This will download the VSCodeSetup.exe in the…
Using the Find combo box to do a Quick Find in the current document in Visual Studio.
Microsoft Visual Studio has an option which lets the developers to perform a quick find within the document using the Find Combobox. Using the Find combo box to do a Quick Find in the current document in Visual Studio. To use this feature, press Ctrl + D. This will position the cursor to the Find Combobox in the IDE. Type the string that you need…
How to Debug a Windows Service written in C# ?
Debugging a Windows Service is one of the difficult thing to do when working on developing a Windows Service project in Visual Studio . One of the method to do the debugging is to attach the debugger to the thread and starting the Windows Service. . This might be little overhead sometimes. How to Debug a Windows Service written in C# ? Incase you need…