Hidden Features of Visual Studio (2005-2008)? - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T14:11:13Zhttp://stackoverflow.com/feeds/question/100420http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/15782#157821Answer by xanadont for Hidden Features of Visual Studio (2005-2008)?xanadont2008-08-19T06:00:46Z2008-08-19T06:00:46Z<p>The most important feature I can't live w/o is VS.Net 2008. :P</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/15786#157862Answer by Michael Stum for Hidden Features of Visual Studio (2005-2008)?Michael Stum2008-08-19T06:10:47Z2008-08-19T06:10:47Z<p>The Debugger :-) Beats Notepad by miles.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/15821#158218Answer by KiwiBastard for Hidden Features of Visual Studio (2005-2008)?KiwiBastard2008-08-19T07:08:00Z2008-08-19T07:08:00Z<p>A lot of people don't know or use the debugger to it's fullest - I.E. just use it to stop code, but right click on the red circle and there are a lot more options such as break on condition, run code on break.</p>
<p>Also you can change variable values at runtime using the debugger which is a great feature - saves rerunning code to fix a silly logic error etc.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/15951#1595112Answer by Coding the Wheel for Hidden Features of Visual Studio (2005-2008)?Coding the Wheel2008-08-19T10:24:53Z2008-08-19T10:24:53Z<p>Sara Ford has this market cornered.</p>
<p><a href="http://blogs.msdn.com/saraford/default.aspx" rel="nofollow">http://blogs.msdn.com/saraford/default.aspx</a></p>
<p>More Visual Studio tips and tricks than you can shake a stick at.</p>
<p>Some others:</p>
<ul>
<li>The Visual Studio 2005 and 2008 3-month trial editions are fully-functional, and can be <a href="http://www.codingthewheel.com/archives/microsoft-vs-the-system-clock" rel="nofollow">used indefinitely</a> (forever) by setting the system clock back prior to opening VS. Then, when VS is opened, set the system clock forward again so your datetimes aren't screwed up.</li>
<li>But that's really piracy and I can't recommend it, especially when anybody with a .edu address can get a fully-functional Pro version of VS2008 through <a href="https://downloads.channel8.msdn.com/" rel="nofollow">Microsoft Dreamspark</a>.</li>
<li>You can use Visual Studio to open 3rd-party executables, and browse embedded resources (dialogs, string tables, images, etc) stored within.</li>
<li>Debugging visualizers are not exactly a "hidden" feature but they are somewhat neglected, and super-useful, since in addition to using the provided visualizers you can <a href="http://nayyeri.net/blog/how-to-write-a-visual-studio-visualizer/" rel="nofollow">roll your own</a> for specific data sets.</li>
<li>Debugger's "Set Instruction Pointer" or "Set Next Statement" command.</li>
<li>Conditional breakpoints (as KiwiBastard noted).</li>
<li>You can use Quickwatch etc. to evaluate not only the value of a variable, but runtime expressions around that variable.</li>
</ul>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/15968#159684Answer by Ali Parr for Hidden Features of Visual Studio (2005-2008)?Ali Parr2008-08-19T10:47:08Z2008-08-19T10:47:08Z<ul>
<li>The memory windows, very useful if you're doing low level stuff.</li>
<li>Control + K , Control + F - Format selection - great for quickly making code neat</li>
<li>Regions, some love them, some hate them, most don't even know they exist</li>
<li>Changing variables in debug windows during execution</li>
<li>Tracepoints</li>
<li>Conditional break points</li>
<li>Hold down Alt and drag for 'rectangular' selection.</li>
<li>Control+B for a breakpoint, to break at function</li>
<li>Control+I for incremental search, F3 to iterate</li>
</ul>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/38932#389323Answer by Steve Steiner for Hidden Features of Visual Studio (2005-2008)?Steve Steiner2008-09-02T06:35:40Z2008-09-02T06:35:40Z<p>CTRL-D then type ">of " then file name. If the standard toolbar is up crtl-d put you in find combobox and there is now a dropdown with files in your solution that match the start of the filename you typed. Pick one and it will open it. This alternative to the open filedialog is awesome for big solutions with lots of directories.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/38937#389370Answer by Steve Steiner for Hidden Features of Visual Studio (2005-2008)?Steve Steiner2008-09-02T06:49:56Z2008-09-02T06:49:56Z<p>Here's an old blog article on some of the <a href="http://blogs.msdn.com/stevejs/default.aspx?p=2" rel="nofollow">hidden debugger features in the expression evaluators</a>. </p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-200862Hidden Features of Visual Studio (2005-2008)?shoosh2008-09-19T08:10:54Z2009-11-14T20:20:37Z
<p>VS is such a massively big product that even after years of working with it I sometimes stumble upon a new/better way to do things or things I didn't even know possible.</p>
<p>For instance-</p>
<ul>
<li><p>Crtl-R,Ctrl-W - show white spaces. essential for editing python build scripts.</p></li>
<li><p>Under <code>"HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor"</code>
Create a String called <a href="http://stackoverflow.com/questions/84209/vertical-line-after-a-certain-amount-characters-in-visual-studio">Guides</a> with the value "RGB(255,0,0), 80" to have a red line at column 80 in the text editor.</p></li>
</ul>
<p>What other hidden feature have you stumble upon?</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100445#10044517Answer by Mark Glorie for Hidden Features of Visual Studio (2005-2008)?Mark Glorie2008-09-19T08:16:03Z2008-09-19T08:16:03Z<pre><code>CTRL-K, CTRL-D
</code></pre>
<p>Reformat Document!<br />
<em>This is under the VB keybindings, not sure about C#</em></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100452#1004528Answer by yrp for Hidden Features of Visual Studio (2005-2008)?yrp2008-09-19T08:17:41Z2008-09-19T08:17:41Z<p>I'm not sure if it's "hidden", but not many people know about it -- <a href="http://www.codeproject.com/KB/debug/pseudoregister.aspx" rel="nofollow">pseudoregisters</a>. Comes very handy when debugging, I've @ERR, hr in my watch window all the time.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100457#10045734Answer by Slace for Hidden Features of Visual Studio (2005-2008)?Slace2008-09-19T08:18:12Z2008-12-03T04:46:14Z<p>Sara Ford covers lots of loverly tips: <a href="http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx" rel="nofollow">http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx</a></p>
<p>But some of my favs are Code Snippets, Ctrl + . to add a using or generate method stub.
I can't live without that.</p>
<p>Check out a great list in the Visual Studio 2008 C# Keybinding poster: <a href="http://www.microsoft.com/downloadS/details.aspx?familyid=E5F902A8-5BB5-4CC6-907E-472809749973&displaylang=en" rel="nofollow">http://www.microsoft.com/downloadS/details.aspx?familyid=E5F902A8-5BB5-4CC6-907E-472809749973&displaylang=en</a></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100465#1004657Answer by Joel in Gö for Hidden Features of Visual Studio (2005-2008)?Joel in Gö2008-09-19T08:20:48Z2008-09-19T08:20:48Z<p><strong>Ctrl-F10</strong>: run to cursor during debugging. Took me ages to find this, and I use it all the time;</p>
<p><strong>Ctrl-E, Ctrl-D</strong>: apply standard formatting (which you can define).</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100467#10046711Answer by Kristian J. for Hidden Features of Visual Studio (2005-2008)?Kristian J.2008-09-19T08:23:24Z2008-09-19T08:23:24Z<p>There has been a question about this earlier:</p>
<p><a href="http://stackoverflow.com/questions/15779/what-are-the-best-unknown-features-of-visual-studio-net-2005#15951">What are the best unknown features of Visual Studio .NET 2005?</a></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100470#1004704Answer by Mark Cidade for Hidden Features of Visual Studio (2005-2008)?Mark Cidade2008-09-19T08:23:55Z2008-09-19T08:23:55Z<p>Drag-drop text selections to the Watch window while in the debugger.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100471#10047114Answer by Leyu for Hidden Features of Visual Studio (2005-2008)?Leyu2008-09-19T08:23:59Z2008-09-19T08:23:59Z<p>firefox like searching: While having a source document open hit (CTRL + i) and type the word you are searching for you can hit (CTRL + I) again to see words matching your input.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100477#10047714Answer by tenpn for Hidden Features of Visual Studio (2005-2008)?tenpn2008-09-19T08:25:34Z2008-09-19T08:25:34Z<p>How many times do you debug an array in a quickwatch or a watch window and only have visual studio show you the first element? Add ",N" to the end of the definition to make studio show you the next N items as well. IE "this->m_myArray" becomes "this->m_array,5".</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100488#10048813Answer by sontek for Hidden Features of Visual Studio (2005-2008)?sontek2008-09-19T08:28:56Z2008-09-19T08:28:56Z<p>CTRL+SHIFT+V will cycle through your clipboard, Visual Studio keeps a history of copies.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100506#1005063Answer by sontek for Hidden Features of Visual Studio (2005-2008)?sontek2008-09-19T08:34:13Z2008-09-19T08:34:13Z<p>My favorite is CTRL+SHIFT+V, which will cycle through your clipboard history (Visual Studio keeps track of every time you copy).</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100511#10051148Answer by shoosh for Hidden Features of Visual Studio (2005-2008)?shoosh2008-09-19T08:35:50Z2008-09-19T08:35:50Z<p>Make a selection with ALT pressed - selects a square of text instead of whole lines.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100523#1005234Answer by Ilya Ryzhenkov for Hidden Features of Visual Studio (2005-2008)?Ilya Ryzhenkov2008-09-19T08:38:41Z2008-09-19T08:38:41Z<p>Ctrl-Minus, Ctrl-Plus, navigates back and forward where you've been recently (only open files, though).</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100582#1005820Answer by Alex for Hidden Features of Visual Studio (2005-2008)?Alex2008-09-19T08:55:01Z2008-09-19T08:55:01Z<p>I always map <code>control + alt + f4</code> to documents.CloseAllWindows in options>environment>keyboard.</p>
<p>Is somewhat more intuitive than using the mouse.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100608#10060819Answer by John for Hidden Features of Visual Studio (2005-2008)?John2008-09-19T08:58:40Z2008-09-19T08:58:40Z<p>You can drag code to the ToolBox. Try it!</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100611#1006112Answer by Dave Arkell for Hidden Features of Visual Studio (2005-2008)?Dave Arkell2008-09-19T08:59:40Z2008-09-19T08:59:40Z<p>Shift+Alt+F10 brings up the built in refactoring menu. Great for adding method stubs from interfaces, and adding Using statements automatically for specific classes.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100649#1006493Answer by David for Hidden Features of Visual Studio (2005-2008)?David2008-09-19T09:09:21Z2008-09-19T09:09:21Z<p>Press the F8 key to cycle through search results. (Shift+F8 for reverse direction)</p>
<p>Hit F12 to go to definition of variable.</p>
<p>Shift + alt + arrow keys = Block select!</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100663#1006631Answer by Rob Sanders for Hidden Features of Visual Studio (2005-2008)?Rob Sanders2008-09-19T09:13:22Z2008-09-19T09:13:22Z<p>I think the ability to right click on a Stored Procedure in Server Explorer and debug.. </p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100793#1007933Answer by Sakin for Hidden Features of Visual Studio (2005-2008)?Sakin2008-09-19T09:44:50Z2008-09-19T09:44:50Z<p>When developing C++, Ctrl-F7 compiles the current file only.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/102174#10217436Answer by Charles Anderson for Hidden Features of Visual Studio (2005-2008)?Charles Anderson2008-09-19T14:17:29Z2008-09-19T14:17:29Z<p>Tracepoints! </p>
<p>Put a breakpoint on a line of code. Bring up the Breakpoints Window and right click on the new breakpoint. Select 'When Hit...'. By ticking the 'Print a message' check box Visual Studio will print out a message to the Debug Output every time the line of code is executed, rather than (or as well as) breaking on it. You can also get it to execute a macro as it passes the line.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/103758#1037581Answer by Slapout for Hidden Features of Visual Studio (2005-2008)?Slapout2008-09-19T17:09:35Z2009-06-19T20:26:37Z<p>Not exactly a hidden feature, but one thing I've done is add a "Start Without Debugging" button next to my "Start With Debugging" button. Just click the down arrow at the right end of the toolbar. Then select "Add or Remove buttons". Then Customize. In the commands tab select the Debug category. Find the Start Without Debugging command and drag it to where you want it on the toolbar. </p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/107506#1075061Answer by LarryF for Hidden Features of Visual Studio (2005-2008)?LarryF2008-09-20T07:23:14Z2008-09-20T07:23:14Z<p>My best feature is one I had to make myself.. It's a cpp/h flipper. If you are looking at the .h file, and hit this macro, (or its keyboard shortcut), it will open the cpp file, and vice-versa.</p>
<p>I can provide the source if anyone wants it.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/107802#107802-3Answer by tenpn for Hidden Features of Visual Studio (2005-2008)?tenpn2008-09-20T10:07:09Z2008-09-20T10:07:09Z<p>Visual Assist, in general, while a bit OT for this question, is a great app and really helps with the day-to-day running of visual studio. Their open-any-file and find-any-symbol windows are particularly awesome.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/121317#1213171Answer by Greg for Hidden Features of Visual Studio (2005-2008)?Greg2008-09-23T14:25:21Z2008-09-23T14:25:21Z<p><a href="http://vladimir.bychkov.info/blog/PermaLink,guid,be76b3bf-c524-456c-9c8f-a2584924aa32.aspx" rel="nofollow">Enable Intellisense in Skin Files</a> </p>
<ol>
<li>Go to Tools->Options menu. </li>
<li>Pick Text Editor -> File Extesion fom a tree at the left part of Options dialog. </li>
<li>Type skin in Extesion text box. </li>
<li>Select User Control Editor from Editor dropdown. </li>
<li>Click Add and then Ok to close dialog and re-open your skin files. </li>
</ol>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/125628#1256282Answer by Mark Cidade for Hidden Features of Visual Studio (2005-2008)?Mark Cidade2008-09-24T06:00:44Z2008-09-24T06:00:44Z<p>Copy-paste from a Watch window of an object's expanded properties in the debugger into Excel will perserve the tabular format and persist the data after the debug session is over.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/125717#1257178Answer by Muxa for Hidden Features of Visual Studio (2005-2008)?Muxa2008-09-24T06:38:10Z2008-09-24T06:38:10Z<p>Discovered today:</p>
<pre><code>Ctrl + .
</code></pre>
<p>Brings up the context menu for refactoring (then one that's accessible via the underlined last letter of a class/method/property you've just renamed - mouse over for menu or "Ctrl" + ".")</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129373#12937324Answer by Craig for Hidden Features of Visual Studio (2005-2008)?Craig2008-09-24T19:36:02Z2008-09-24T19:55:36Z<p>Click an identifier (class name, variable, etc) then hit <strong>F12</strong> for "Go To Definition". I'm always amazed how maybe people I watch code that use the slower right-click -> "Go To Definition" method.</p>
<p><strong>EDIT:</strong> Then you can use Ctrl+- [control minus] to jump back to where you were.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129876#12987615Answer by Thomas Bratt for Hidden Features of Visual Studio (2005-2008)?Thomas Bratt2008-09-24T20:48:27Z2008-09-24T20:48:27Z<ul>
<li><strong>Ctrl-K, Ctrl-C</strong> to comment a block of text with <strong>//</strong> at the start</li>
<li><strong>Ctrl-K, Ctrl-U</strong> to uncomment a block of text with <strong>//</strong> at the start</li>
</ul>
<p>Can't live without it! :)</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129885#1298851Answer by Thomas Bratt for Hidden Features of Visual Studio (2005-2008)?Thomas Bratt2008-09-24T20:50:16Z2008-09-24T20:50:16Z<ul>
<li><strong>Ctrl-K, Ctrl-C</strong> to comment a block of text with <strong>//</strong> at the start</li>
<li><strong>Ctrl-K, Ctrl-U</strong> to uncomment a block of text with <strong>//</strong> at the start</li>
</ul>
<p>Can't live without it! :)</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129908#1299083Answer by Rob for Hidden Features of Visual Studio (2005-2008)?Rob2008-09-24T20:54:13Z2008-09-24T20:54:13Z<p>CTRL + Shift + U -> Uppercase highlighted section.
CTRL + U -> Lowercase the highlighted section
Great for getting my SQL Statements looking just right when putting them into string queries.</p>
<p>Also useful for code you've found online where EVERYTHING IS IN CAPS.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129947#1299473Answer by Optimal Solutions for Hidden Features of Visual Studio (2005-2008)?Optimal Solutions2008-09-24T21:00:51Z2008-09-24T21:00:51Z<p>There is an <a href="http://blogs.msdn.com/vbteam/archive/2008/09/22/did-you-know-300-visual-studio-tips-tricks-lisa-feigenbaum.aspx" rel="nofollow">article</a> about this. It seems to be a lengthy collection.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129949#1299490Answer by Carra for Hidden Features of Visual Studio (2005-2008)?Carra2008-09-24T21:00:56Z2008-09-24T21:08:02Z<p>
<li> Print the shortcuts from the Microsoft page and put them next to you. Try to learn a new one every day. You'll find all shortcuts already mentioned here + lots more. Some very useful contain formatting a code block, commenting, navigate between pages,...</li>
<li> Get Resharper, it's a plugin which whill greatly increase your efficiency. If you use Resharper, you can find a list with shortcuts.</li>
</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/169321#1693216Answer by naumlist for Hidden Features of Visual Studio (2005-2008)?naumlist2008-10-03T23:31:59Z2008-10-03T23:31:59Z<p>To auto-sync current file with Solution Explorer. So don't have to look where the file lives in the project structure</p>
<p>Tools -> Options -> Projects and Solutions -> "Track Active Item in Solution Explorer"</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/176763#17676311Answer by Ferruccio for Hidden Features of Visual Studio (2005-2008)?Ferruccio2008-10-07T00:07:32Z2008-10-07T00:07:32Z<p>You can use the following codes in the watch window.</p>
<pre><code>@err - display last error
@err,hr - display last error as an HRESULT
@exception - display current exception
</code></pre>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/191578#19157812Answer by Charles Anderson for Hidden Features of Visual Studio (2005-2008)?Charles Anderson2008-10-10T14:27:48Z2008-10-10T14:27:48Z<p>Stopping the debugger from stepping into trivial functions. </p>
<p>When you’re stepping through code in the debugger, you can spend a lot of time stepping in and out of functions you’re not particularly interested in, with names such as GetID(), or std::vector<>(), to pick a C++ example. You can use the registry to make the debugger ignore these. </p>
<p>For Visual Studio 2005, you have to go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio \8.0\NativeDE\StepOver and add string values containing regular expressions for each function or set of functions you wish to exclude; e.g. </p>
<p>std\:\:vector.*\:\:.*<br />
TextBox\:\:GetID</p>
<p>You can also override these for individual exceptions. For instance, suppose you did want to step into the vector class’s destructor:</p>
<p>std\:\:vector.*\:\:\~.*=StepInto</p>
<p>You can find details for other versions of Visual Studio at <a href="http://blogs.msdn.com/andypennell/archive/2004/02/06/69004.aspx" rel="nofollow">http://blogs.msdn.com/andypennell/archive/2004/02/06/69004.aspx</a></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/203711#2037117Answer by Shiju for Hidden Features of Visual Studio (2005-2008)?Shiju2008-10-15T04:20:01Z2008-10-15T04:20:01Z<p><a href="http://msdn.microsoft.com/en-us/library/bb126445.aspx" rel="nofollow">T4 (Text Template Transformation Toolkit)</a>. T4 is a code generator built right into Visual Studio</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/276393#2763933Answer by Emerick Rogul for Hidden Features of Visual Studio (2005-2008)?Emerick Rogul2008-11-09T20:04:51Z2009-11-14T20:20:37Z<p>To display any chunk of data as an n-byte "array", use the following syntax in Visual Studio's watch window:</p>
<pre><code>variable, n
</code></pre>
<p>For example, to view a variable named <code>foo</code> as a 256-byte array, you would enter the following in the watch window:</p>
<pre><code>foo, 256
</code></pre>
<p>This is particularly useful for viewing non-null terminated strings or data that is only accessible via a pointer. You can use the memory window to achieve a similar result, but using the watch window is often more convenient for a quick check.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/361295#3612952Answer by LarryF for Hidden Features of Visual Studio (2005-2008)?LarryF2008-12-11T22:47:03Z2008-12-19T19:04:19Z<p>Here is the Macro source for my aspx/aspx.cs flipper. It works in 2005, but it may have issues in 08.. I'm not sure... This was taken from my other cpp/h flipper, so there might be some clean up needed to make it the best it could be. I'm not paid to write Macros, so I have to blast though them as quickly as possible when I need one.</p>
<pre><code> Sub OpenASPOrCS()
'DESCRIPTION: Open .aspx file if in .cs file, open .cs file if in .aspx file
On Error Resume Next
' Get current doc path
Dim FullName
FullName = LCase(ActiveDocument.FullName)
If FullName = "" Then
MsgBox("Error, not a .cs or asp file!")
Exit Sub
End If
' Get current doc name
Dim DocName
DocName = ActiveDocument.Name
Dim IsCSFile
IsCSFile = False
Dim fn
Dim dn
If (Right(FullName, 3) = ".cs") Then
fn = Left(FullName, Len(FullName) - 3)
dn = Left(DocName, Len(DocName) - 3)
IsCSFile = True
ElseIf ((Right(FullName, 5) = ".aspx") Or (Right(FullName, 5) = ".ascx")) Then
fn = FullName + ".cs"
dn = DocName + ".cs"
Else
MsgBox("Error, not a .cs, or an asp file!")
Exit Sub
End If
Dim doc As EnvDTE.Documents
DTE.ItemOperations.OpenFile(fn)
doc.DTE.ItemOperations.OpenFile(fn)
If Err.Number = 0 Then
Exit Sub
End If
' First check to see if the file is already open and activate it
For Each doc In DTE.Documents()
If doc.Name = dn Then
doc.Active = True
Exit Sub
End If
Next
End Sub
</code></pre>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/381887#3818870Answer by LarryF for Hidden Features of Visual Studio (2005-2008)?LarryF2008-12-19T19:05:44Z2008-12-19T19:05:44Z<p>I updated my code flipper, I posted earlier. I added support for ASP Controls.</p>
<p>Larry</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/513225#5132251Answer by AShelly for Hidden Features of Visual Studio (2005-2008)?AShelly2009-02-04T20:44:29Z2009-02-04T20:44:29Z<p>The Open button in the File Open dialog has a little down arrrow next to it. Click that and you get the "Open With" option which includes the Binary Editor. As a systems-type guy, I find it quite valuable, but most of my colleagues hadn't known about it until I showed them.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/525432#5254325Answer by ebattulga for Hidden Features of Visual Studio (2005-2008)?ebattulga2009-02-08T09:07:58Z2009-02-08T09:07:58Z<p>TAB key feature.</p>
<ol>
<li><p>If you know snippet key name, write and click double Tab. for example:
Write</p>
<p>foreach</p></li>
</ol>
<p>and then click tab key twice to</p>
<pre><code>foreach (object var in collection_to_loop)
{
}
</code></pre>
<p>2. If you write any event, write here</p>
<pre><code> Button btn = new Button();
btn.Click +=
</code></pre>
<p>and then click tab key twice to</p>
<pre><code>private void Form1_Load(object sender, EventArgs e)
{
Button btn = new Button();
btn.Click += new EventHandler(btn_Click);
}
void btn_Click(object sender, EventArgs e)
{
throw new Exception("The method or operation is not implemented.");
}
</code></pre>
<p>btn_Click function write automatically</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/540962#5409621Answer by Conrad for Hidden Features of Visual Studio (2005-2008)?Conrad2009-02-12T11:47:42Z2009-02-12T11:47:42Z<p>Ctrl+L deletes the current selected line. This is an awesome time saver (if used responsibly of course!!!)</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/541149#5411492Answer by davidnr for Hidden Features of Visual Studio (2005-2008)?davidnr2009-02-12T13:07:00Z2009-02-12T13:07:00Z<p><strong>Ctrl-M + Ctrl-L</strong> Toggle Collapse All - Expand All</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/541218#5412181Answer by Lennaert for Hidden Features of Visual Studio (2005-2008)?Lennaert2009-02-12T13:28:31Z2009-02-12T13:28:31Z<p>Re: Stopping the debugger from stepping into trivial functions.</p>
<p>In C#, you can also add an attribute [DebuggerStepThrough] (using System.Diagnostics) to a method. This causes the debugger to, ironically, not step through the method.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/614246#6142463Answer by Pondidum for Hidden Features of Visual Studio (2005-2008)?Pondidum2009-03-05T10:27:41Z2009-03-05T10:27:41Z<p><strong>Document Outline</strong> in the FormsDesigner (<strong>CTRL + ALT + T</strong>)</p>
<p>Fast control renaming, ordering and more!</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/620219#6202199Answer by Brann for Hidden Features of Visual Studio (2005-2008)?Brann2009-03-06T20:00:52Z2009-03-06T20:00:52Z<p><strong>Custom intellisense dropdown height</strong>,ie displaying 50 items instead of the default which is imo ridiculously small (8)</p>
<p>(To do that, just resize the dropdown next time you see it, and VS will remember the size you selected next time it opens a dropdown</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/788544#7885442Answer by CodeGen for Hidden Features of Visual Studio (2005-2008)?CodeGen2009-04-25T08:40:34Z2009-04-25T08:40:34Z<p>Ctrl-T swaps the last two letters. For example, "swithc" -> "switch".</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/841955#8419551Answer by Canavar for Hidden Features of Visual Studio (2005-2008)?Canavar2009-05-08T21:43:26Z2009-05-08T21:43:26Z<p><a href="http://blogs.msdn.com/webdevtools/archive/2007/11/06/jscript-intellisense-a-reference-for-the-reference-tag.aspx" rel="nofollow">Reference tag</a> of Visual Studio 2008 for javascript intellisense is a brand new hidden feature. Especially <a href="http://blogs.msdn.com/webdevtools/archive/2008/10/28/rich-intellisense-for-jquery.aspx" rel="nofollow">JQuery intellisense</a> is a devastating !</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1002831#10028315Answer by Dmitriy Matveev for Hidden Features of Visual Studio (2005-2008)?Dmitriy Matveev2009-06-16T17:17:15Z2009-06-16T17:17:15Z<p>Line transpose, Shift-Alt-T<br />
Swaps two line (current and next) and moves cursor to the next line. I'm lovin it. I've even written a macro which changed again position by one line, executed line transpose and changed line position again so it all looking like I swapping current line with previous (Reverse line transpose).</p>
<p>Word transpose, Shift-Ctrl-T </p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1016190#10161902Answer by SLaks for Hidden Features of Visual Studio (2005-2008)?SLaks2009-06-19T03:09:58Z2009-06-19T03:09:58Z<p>Ctrl+Shift+L deletes the current line (without cutting it to the clipboard)</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1016209#10162092Answer by SLaks for Hidden Features of Visual Studio (2005-2008)?SLaks2009-06-19T03:17:33Z2009-06-19T03:17:33Z<p>You can drag down the little gray box above the vertical scrollbar to split the window into two views of the same file, which can be scrolled independently - great if you're comparing two parts of the same file.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1016438#10164380Answer by Charlie Salts for Hidden Features of Visual Studio (2005-2008)?Charlie Salts2009-06-19T05:19:55Z2009-06-19T05:19:55Z<p>CTRL-G for jumping to a specific line number. Saves a few seconds when you've got a line number in a large code file.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1017513#10175132Answer by SLaks for Hidden Features of Visual Studio (2005-2008)?SLaks2009-06-19T11:44:23Z2009-10-22T07:02:22Z<blockquote>
<p>View, Code Definition Window.</p>
</blockquote>
<p>The <a href="http://msdn.microsoft.com/en-us/library/f5yx24a6.aspx" rel="nofollow">Code Definition Window</a> shows the definition of the currently selected identifier (If it's in your solution, it'll show your sourced; otherwise, it'll extract metadata, like right-click, Go To Definition)</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1017538#10175380Answer by m1k4 for Hidden Features of Visual Studio (2005-2008)?m1k42009-06-19T11:50:48Z2009-06-19T11:50:48Z<p>I see that lot of us are posting shortcuts. I have printed this poster, it's very helpful to learn those shortcuts - nowadays I look very rarely at the poster 'cause I've learned most of them :)</p>
<p>Link for VS posters:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=c15d210d-a926-46a8-a586-31f8a2e576fe" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=c15d210d-a926-46a8-a586-31f8a2e576fe</a></p>
<p>My favourites are Refactoring ones (CTRL-R + Something)</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1017557#10175571Answer by SLaks for Hidden Features of Visual Studio (2005-2008)?SLaks2009-06-19T11:56:18Z2009-06-19T11:56:18Z<p>View, Other Windows, Object Test Bench</p>
<p>The object test bench can be used to execute code at design-time.</p>
<p>You can right-click on a type in Class View, click Create Instance, and select a constructor. You can then supply values for its parameters, if any, and the instance will show up in the Object Test Bench.</p>
<p>You can also call static methods by right-clicking a type and clicking Invoke Static Method.</p>
<p>In the Object Test Bench, you can right-click on an object to call methods, and you can hover over it and see its structure (like you can when debugging). You can also assign to and interact with these variables in the Immediate window, also at design time.</p>
<p>This feature can be useful when writing a library. Please note that to use this, your solution must be compile first.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1017683#10176830Answer by elpipo for Hidden Features of Visual Studio (2005-2008)?elpipo2009-06-19T12:25:00Z2009-06-19T12:25:00Z<p>I wanted to talk about comment (<strong>ctrl+k, ctrl+c</strong>) and uncomment (<strong>ctrl+k, ctrl+u</strong>) shortcuts but a Bratt (:p) already mentioned them. </p>
<p>How about the <strong>ctrl+k, ctrl+d</strong> shortcut, very convenient to <strong>format markup</strong> (asp.net, html) <strong>and javascript</strong> code !</p>
<p>Cheers</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1017776#10177760Answer by Dusty for Hidden Features of Visual Studio (2005-2008)?Dusty2009-06-19T12:45:42Z2009-06-19T12:45:42Z<p>I don't know how unknown most people consider them to be, but I don't think that a lot of people use snippets. </p>
<p>I discovered them a while back and then found that they were customizable by editing the xml in the Visual Studio Program Files directory. They make it super easy to add a lot of code quickly.</p>
<p>Also, to save time when using snippets make sure you hit tab twice and not try to do everything through the right click menu.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1270781#12707811Answer by Ian for Hidden Features of Visual Studio (2005-2008)?Ian2009-08-13T08:30:29Z2009-08-13T08:30:29Z<p>One that I only just discovered. When dealing with COM it's possible to lookup a brief message from the cryptic hexadecimal error number using a tool called errlook.exe.</p>
<p>The useful tool is located in your VS\Common7\Tools directory.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1270854#12708542Answer by Pavel Minaev for Hidden Features of Visual Studio (2005-2008)?Pavel Minaev2009-08-13T08:51:37Z2009-08-13T08:51:37Z<p>.NET debugger allows you to give objects identifiers, and to refer them via those identifiers later during the session. To do so, you right-click on the variable (or expression) referencing the object in Autos/Locals/Watch window, or in the tooltip, and select "Create Object ID". IDs are sequential integer numbers, starting from 1, and suffixed by "#" - e.g <code>1#</code> will be the first ID you create.</p>
<p>After the ID is created, if the object is associated with a given ID, it is displayed in parentheses.</p>
<p>You can use <code>1#</code> to reference the object by ID anywhere you can normally use expressions - in Watch window, in condition of a conditional breakpoint, and so on. It's most handy when you want to set a breakpoint on a method of some particular object only - if you can first track the object creation, or some other place where this particular object is referenced, you just create the ID for it, and then set a new breakpoint with condition such as <code>this==1#</code>.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355825#13558253Answer by adamantium for Hidden Features of Visual Studio (2005-2008)?adamantium2009-08-31T04:45:41Z2009-08-31T04:45:41Z<p><a href="http://www.tkachenko.com/blog/archives/000740.html" rel="nofollow">Dynamic XSLT Intellisense</a></p>
<blockquote>
<p>A very little known fact is that
Visual Studio 2008 does support real
XSLT intellisense - not a static XSLT
schema-based one, but real dynamic
intellisense enabling autocompletion
of template names, modes,
parameter/variable names, attribute
set names, namespace prefixes etc.</p>
</blockquote>
<p>For all versions of VS I like </p>
<p><strong>Ctrl + Shift + V</strong></p>
<p>for copying data in clipboard cycle.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355830#13558303Answer by Jay Riggs for Hidden Features of Visual Studio (2005-2008)?Jay Riggs2009-08-31T04:46:40Z2009-09-10T15:32:08Z<p>Here's something I learned (for C#):</p>
<p>You can move the cursor to the opening curly brace from the closing curly brace by pressing Control + ].</p>
<p>I learned this on an SO topic that's a dupe of this one:</p>
<p><a href="http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger">“Hidden Secrets” of the Visual Studio .NET debugger?</a> </p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355835#13558356Answer by silky for Hidden Features of Visual Studio (2005-2008)?silky2009-08-31T04:48:14Z2009-08-31T06:21:45Z<p>I don't use it often, but I do love:</p>
<pre><code>ctrl-alt + mouse select
</code></pre>
<p>To select in a rectangular block, to 'block' boundaries.</p>
<p>As noted in comments,</p>
<pre><code>alt + mouse select
</code></pre>
<p>Does just a plain rectangular block.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355852#13558522Answer by silky for Hidden Features of Visual Studio (2005-2008)?silky2009-08-31T04:55:57Z2009-08-31T04:55:57Z<p>I don't know how 'hidden' this is, but some newew people may not know about <em>coniditonal breakpoints</em>.</p>
<p>Set a breakpoint, then right click it, and choose <code>Condition</code>, then enter an expression like:</p>
<pre><code>(b == 0)
</code></pre>
<p>And it will only fire when that is true. Very useful when trying to debug a certain stage of a loop.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355856#13558561Answer by obelix for Hidden Features of Visual Studio (2005-2008)?obelix2009-08-31T04:59:22Z2009-08-31T04:59:22Z<p>There is this blog on MSDN thats got some nice tips and tricks</p>
<p><a href="http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx" rel="nofollow">http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx</a></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355934#13559341Answer by Zxpro for Hidden Features of Visual Studio (2005-2008)?Zxpro2009-08-31T05:31:53Z2009-08-31T05:31:53Z<p>The existence of the <b><a href="http://www.jetbrains.com/resharper/" rel="nofollow">Resharper</a></b> add-in. It makes working with Visual Stupidio less of a pain :)</p>
<p>It's not really a hidden feature, but worth mention nonetheless as it comes with tons of these tricks and hotkeys.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355962#13559620Answer by Soo Wei Tan for Hidden Features of Visual Studio (2005-2008)?Soo Wei Tan2009-08-31T05:43:49Z2009-08-31T05:43:49Z<p>Vertical selection with Ctrl-Left Click is pretty useful sometimes...</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1355998#13559980Answer by RodH257 for Hidden Features of Visual Studio (2005-2008)?RodH2572009-08-31T05:56:58Z2009-08-31T05:56:58Z<p>Shift + Delete to cut whatever line the cursor is on.</p>
<p>I use this all the time to delete whole lines of code.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1356084#13560841Answer by Alex for Hidden Features of Visual Studio (2005-2008)?Alex2009-08-31T06:33:46Z2009-08-31T06:33:46Z<p>Mouse Left Click resets your cursor to the position your pointer is currently hovering. Very useful for navigating through Visual Studio.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1356151#13561511Answer by zxcat for Hidden Features of Visual Studio (2005-2008)?zxcat2009-08-31T06:55:15Z2009-08-31T06:55:15Z<ul>
<li><strong>Vertical split of the window</strong> using "New Window" and "New Vertical Tab Group" combination.</li>
</ul>
<p>There is only horizontal split in VS by default, but trick with window duplication allows to use vertical split too.</p>
<ul>
<li><p>Vertical selection is good (it accessible with keyboard too: Alt+Shift+[Ctrl]+Arrows). But sometimes I need to use <strong>Vertical Copy/Cut and Paste</strong>. VS is smart enough to handle this correctly.</p></li>
<li><p>There are also very useful features: <strong>Go Next/Prev Scope</strong> (Alt+Down/Up), <strong>Go to Implementation</strong> (Alt+G), but they are a part of the <a href="http://wholetomato.com/" rel="nofollow" title="Visual Assist X">Visual Assist X</a> plug-in.</p></li>
</ul>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1422186#14221861Answer by Pierre-Alain Vigeant for Hidden Features of Visual Studio (2005-2008)?Pierre-Alain Vigeant2009-09-14T15:12:39Z2009-09-14T15:12:39Z<p>In the watch window, you can view the current exception even if you have no variable to hold it by adding a watch on <code>$exception</code></p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1689898#16898980Answer by Matthew Sposato for Hidden Features of Visual Studio (2005-2008)?Matthew Sposato2009-11-06T19:43:33Z2009-11-06T20:43:27Z<p>I'm surprised no one has mentioned this yet. I find the ability record and play back a series of actions very, very helpful sometimes. Like if I'm applying some repetitive action to a few lines in a text file.</p>
<p>For example</p>
<p>Ctrl+Shift+R (start recording macro)</p>
<p>perform a series of keystrokes</p>
<p>Ctrl+Shift+R (stop recording macro)</p>
<p>later....</p>
<p>Ctrl+Shift+P (play back keystrokes)</p>
<p>This approach is ideal for a short, one time manipulations. If it's something more involved or needed more than once, I'll write a script.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1707657#17076570Answer by Himadri for Hidden Features of Visual Studio (2005-2008)?Himadri2009-11-10T12:37:57Z2009-11-10T12:37:57Z<p>I just wanted to copy that code without the comments.</p>
<p>So, the trick is to simply press the Alt button, and then highlight the rectangle you like.(e. g. below).</p>
<pre><code>protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
//if (e.CommandName == "sel")
//{
// lblCat.Text = e.CommandArgument.ToString();
//}
}
</code></pre>
<p>In the above code if I want to select :</p>
<pre><code>e.CommandName == "sel"
lblCat.Text = e.Comman
</code></pre>
<p>Then I press ALt key and select the rectangle and no need to uncomment the lines.</p>
<p>Check this out.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1707716#17077160Answer by Damon A. for Hidden Features of Visual Studio (2005-2008)?Damon A.2009-11-10T12:49:01Z2009-11-10T12:49:01Z<p>Request: Anyone know how to shorten paths in the find window to be rooted at my solution folder instead of the drive? They're just too long.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/1710151#17101511Answer by Kevin Driedger for Hidden Features of Visual Studio (2005-2008)?Kevin Driedger2009-11-10T18:31:05Z2009-11-10T18:31:05Z<p>Middle Mouse Button Click on the editor tab closes the tab.</p>