List/Grid Tag Archives: visual studio
How To Show Line Numbers In Visual Studio
In Visual Studio, Line Numbers are not on by default. but it is very handy to enable them because they will help you enhancing your programmability. As most of the time, errors are shown with the information about the line number where that error has occurred. That time, these line numbers can help you finding the line where that error was occurred. I will be using Visual Studio 2010 Ultimate…
How To Quickly Switch Through Tabbed Documents In Visual Studio
The same kind of functionality that you have in your browsers to quickly navigate between tabs using hotkeys like Ctrl + Tab, Ctrl + Shift + Tab, Ctrl + 1,2,3,4,…, is also present in Visual Studio. In this article I will show you some quick ways to navigate between tabbed documents in Visual Studio. I am using Visual Studio 2010, but I think these all ways will perfectly work with…
How To Compile C# Console Application Using Visual Studio Command Prompt
If you want to know how this Visual Studio Command Prompt works or how can you compile your Applications using this tool, then here is a simple guide to you. In this article, I will tell you how can you Compile an Application using this Command Prompt. For example purpose, I will be Compiling the Application which I have made in this one of my other articles How To Create…
How To Add References In Visual Studio
To use any component in your Application in Visual Studio, you have to add reference to that component. By default, when you create new application, Visual Studio adds reference to some of the needed component. But if you want to use other component except that are already present, you have to manually add a reference to that component in visual studio. You can add reference by 5 means in Visual…
How To Change Start Up Page Of A Web Application
In your Web Application, when you add some pages to your website, the page with name “Default.aspx” runs automatically when you run your application. But you want to set other page as default start up page for your web application. Because you don’t want to add a page with name “Default.aspx” or you just want to use other page as default start up page instead of having “Default.aspx” as default…
How To Change Default Web Browser In Visual Studio
While developing Web Applications in Visual Studio, you would probably want to test your application in different Web Browser or just want to set a different Web Browser as your Default Web Browser for Visual Studio only without changing default web browser for your Operating System. Instructions: Open Visual Studio and then open Solution Explorer there. You must have opened a Web Application project in Visual Studio In the Solution…
How To Use Code Snippets In Visual Studio
I this article, I will discus about one of the greatest features in Visual Studios which is Code Snippets. This is an IntelliSense feature present in Visual Studio. This feature provides you ready-made code snippets to use in your project. We are already familiar with Visual Studio IntelliSense, but this feature makes IntelliSense more helpful. In this article, I will place code snippet for If statement. Instructions: Open the file…
How To Create Data Connection In Visual Studio
Creating a data connection is very important and is much needed task, specially when you create applications or websites which communicate with external Data Sources like SQL Server, Oracle, etc. In this article i will show you how to create a data connection in Visual Studio. I will be using Visual Studio 2010 Ultimate edition and Microsoft SQL Server 2008 R2 to explain you the process. Instructions: Create a New…