Need hotkey/button to comment out a block of code in Visual Studio 2008 Express - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:33:13Z http://stackoverflow.com/feeds/question/312626 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express 3 Need hotkey/button to comment out a block of code in Visual Studio 2008 Express Edward Tanguay 2008-11-23T15:35:30Z 2008-11-23T20:05:06Z <p>I'm coming from Eclipse, working in Visual Studio 2008 Express and just want to highlight code, right-click and comment it out.</p> <ul> <li>nothing in right-click</li> <li>looking in Tools | Options, Toolbars, Commands, can't find a button for it...</li> </ul> <p>How do I activate this the comment/uncomment feature, I know Visual Studio 2003 had it.</p> <p>HERE ARE THE ANSWERS, TURNS OUT IT DEPENDS WHAT YOU ARE USING:</p> <p><strong>Visual Studio 2008 Full Version:</strong></p> <pre><code>Comment ctrl-k, ctrl-c uncomment ctrl-k, ctrl-u </code></pre> <p><strong>Visual Web Developer 2008 Express:</strong></p> <pre><code>Comment ctrl-k, ctrl-c uncomment ctrl-k, ctrl-u </code></pre> <p><strong>Visual C# 2008 Express:</strong></p> <pre><code>Comment ctrl-e, ctrl-c uncomment ctrl-e, ctrl-u </code></pre> http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312631#312631 3 Answer by Mauro for Need hotkey/button to comment out a block of code in Visual Studio 2008 Express Mauro 2008-11-23T15:39:50Z 2008-11-23T15:39:50Z <p>the key combination </p> <pre><code>Comment ctrl-k, ctrl-c uncomment ctrl-k, ctrl-u </code></pre> <p>Thats VS 2008, not sure if the express editions have the same thing.</p> http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312638#312638 1 Answer by MovEaxEsp for Need hotkey/button to comment out a block of code in Visual Studio 2008 Express MovEaxEsp 2008-11-23T15:45:09Z 2008-11-23T15:45:09Z <p>Mauro is right about the shortcuts, they're in Express as well. You can also get to the Comment/Uncomment block commands in the Edit->Advanced menu. You probably also have a toolbar icon to do this that looks like a couple of lines, with a few indented blue ones.</p> http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312714#312714 4 Answer by Gishu for Need hotkey/button to comment out a block of code in Visual Studio 2008 Express Gishu 2008-11-23T16:57:01Z 2008-11-23T16:57:01Z <p>Weird it's Ctrl+E, C (Comment) and Ctrl+E, U (Uncomment)</p> <p><a href="http://picasaweb.google.com/lh/photo/jS75c4D1FfUA9kBy92nB5Q?authkey=-b3uGjHkX3g" rel="nofollow"><img src="http://lh4.ggpht.com/_nxgDpneh8yk/SSmK9owk_dI/AAAAAAAAAZA/CIOm5V9Jbyw/s800/Comment_in_EE.JPG" /></a></p> <p>Normally It's Ctrl+K, C and Ctrl+K, U as Mauro says. Express Edition default (and only) keyboard mapping says otherwise.</p> http://stackoverflow.com/questions/312626/need-hotkey-button-to-comment-out-a-block-of-code-in-visual-studio-2008-express/312885#312885 1 Answer by shoosh for Need hotkey/button to comment out a block of code in Visual Studio 2008 Express shoosh 2008-11-23T20:05:06Z 2008-11-23T20:05:06Z <p>Visual Assist X also has better shortcuts for this:</p> <blockquote> <p><code>/</code> - comment the block with <code>//</code><br /> <code>*</code> - comment the block with <code>/* */</code></p> </blockquote> <p>I'm not sure if it Visual Assist works with The express edition though</p>