A Place for C Sharpers/.Netters

I Will do coding till last moment of life-Kiran Patil

Posts Tagged ‘VS 2005’

Visual Studio Keyboard shortcut Posters

Posted by kiranpatils on May 30, 2009

Background:

We all developers daily[On weekends also] use Visual Studio. And most of the time we do some common tasks like Comment Code[CTRL+K+C] and Uncomment Code[CTRL+K+U]. Some of us do Manually

//Single line comment

/* Multiline comment */

Or some of us use VS Toolbar for doing the same.

This is just one piece of stuff i told there are so many types of  stuff which we do regularly. So why not use Shortcuts for that? Good idea..But from where can i find all the shortcuts for Visual Studio? Here it is:

Microsoft guys have published posters[in pdf format] for us:

 Visual Studio Version-Language

Download Link

VS 2008-C# http://www.microsoft.com/downloadS/details.aspx?FamilyID=e5f902a8-5bb5-4cc6-907e-472809749973&displaylang=en
VS 2008-VB http://www.microsoft.com/downloadS/info.aspx?na=47&p=4&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=e5f902a8-5bb5-4cc6-907e-472809749973&u=details.aspx%3ffamilyid%3d255B8CF1-F6BD-4B55-BB42-DD1A69315833%26displaylang%3den
VS 2005-C# http://www.microsoft.com/downloadS/info.aspx?na=47&p=3&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=e5f902a8-5bb5-4cc6-907e-472809749973&u=details.aspx%3ffamilyid%3dC15D210D-A926-46A8-A586-31F8A2E576FE%26displaylang%3den
VS 2005-VB http://www.microsoft.com/downloadS/info.aspx?na=47&p=2&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=c15d210d-a926-46a8-a586-31f8a2e576fe&u=details.aspx%3ffamilyid%3d6BB41456-9378-4746-B502-B4C5F7182203%26displaylang%3den

 

Hope this helps to increase your productivity :)

Programming With Fun!!

Posted in Posters, VS 2005, VS 2008 | Tagged: , , | Leave a Comment »

What is the Difference Between Build and Re-Build in visual Studio .Net?

Posted by kiranpatils on April 2, 2008

Difference between Build Solution and Rebuild Solution option in VS.Net

Difference between Build Solution and Rebuild Solution option in VS.Net

VisualStudio.Net provides us with two options for compiling and creating builds for our application. They are Build Solution and Rebuild Solution options which can be accessed from the Build menu. The differences between these two options are

1. The Build Solution option compiles only those project files and components that have changed since the last build. For example consider that you have two projects Proj1 and Proj2 in your solution MySolution. When you compile the solution using Build Solution option after making some changes to Proj1 only Proj1 will be compiled and built but Proj2 will not be compiled since there are no changes to it.

2. On the other hand the Rebuild Solution option builds all project files and components irrespective of the changes made to them.  For example consider that you have two projects Proj1 and Proj2 in your solution MySolution. When you compile the solution using Rebuild Solution option after making some changes to Proj1, both Proj1 and Proj2 will be compiled and built even though there are no changes made to Proj2.

In Short:

Build: Compile Changes 

Rebuild: Compile all [whether source is changed or not] .

Thanks to :

http://www.dotnetjunkies.com/WebLog/nilapenn/archive/2004/05/22/14251.aspx

Thanks Buddy nilapenn

Posted in VS 2005 | Tagged: | Leave a Comment »