How do i change the intellisense settings in VS2008? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:29:52Z http://stackoverflow.com/feeds/question/1052507 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1052507/how-do-i-change-the-intellisense-settings-in-vs2008 2 How do i change the intellisense settings in VS2008? RCIX 2009-06-27T09:41:11Z 2009-06-27T11:11:18Z <p>What the title says. Is there a way to change intellisense settings (intellisense box size and things like that)?</p> http://stackoverflow.com/questions/1052507/how-do-i-change-the-intellisense-settings-in-vs2008/1052516#1052516 2 Answer by Ahmed Said for How do i change the intellisense settings in VS2008? Ahmed Said 2009-06-27T09:49:57Z 2009-06-27T09:49:57Z <p>I think all the settings for the intellisense and TextEditor are in </p> <p>Tools->Options->Text Editor</p> http://stackoverflow.com/questions/1052507/how-do-i-change-the-intellisense-settings-in-vs2008/1052584#1052584 1 Answer by Niki for How do i change the intellisense settings in VS2008? Niki 2009-06-27T10:36:50Z 2009-06-27T10:36:50Z <p>You can resize the intellisense box size simply by dragging the lower right corner with the mouse. Just like any other window.</p> http://stackoverflow.com/questions/1052507/how-do-i-change-the-intellisense-settings-in-vs2008/1052626#1052626 2 Answer by Halvard for How do i change the intellisense settings in VS2008? Halvard 2009-06-27T10:59:07Z 2009-06-27T10:59:07Z <p>In Visual Studio 2008 you can find the settings for IntelliSense for C# in <em>Tools | Options... | Text Editor | C# | IntelliSense</em>.</p> <p>If this does not work it might be that you have installed another tool that overrides the IntelliSense, like the popular ReSharper. For ReSharper the settings are in <em>ReSharper | Options... | Environment | IntelliSense</em>.</p> http://stackoverflow.com/questions/1052507/how-do-i-change-the-intellisense-settings-in-vs2008/1052647#1052647 1 Answer by splattne for How do i change the intellisense settings in VS2008? splattne 2009-06-27T11:11:18Z 2009-06-27T11:11:18Z <p>By default, most of the IntelliSense options are in effect. You can turn off an option by default and invoke it through a menu command or keystroke combination.</p> <p>Even when an IntelliSense option is on by default, you can explicitly invoke it. You can also change the default key mappings for each option.</p> <p>To turn IntelliSense options <strong>off</strong> by default</p> <ol> <li>On the Tools menu, click Options.</li> <li>Select the Text Editor folder.</li> <li>Select the folder for the language you want to customize IntelliSense.</li> <li>In the General property page, clear check boxes for IntelliSense features that you do not want: <ul> <li>Auto list members applies to List Members</li> <li>Parameter information applies to Parameter Info</li> </ul></li> </ol> <p>In the IntelliSense property page, clear text box options or check box options for IntelliSense features that you do not want:</p> <ul> <li>Show completion list after a character is typed</li> <li>Committed by typing the following characters</li> <li>Committed by pressing the space bar</li> <li>IntelliSense pre-selects most recently used members applies to IntelliSense for Most Recently Used Members</li> </ul> <p><em>Note: If you change the IntelliSense settings, your new settings will apply to IntelliSense in both the Code Editor and the Immediate Mode Command Window.</em> </p> <p>For further information there is an page on MSDN: <a href="http://msdn.microsoft.com/en-us/library/hcw1s69b.aspx" rel="nofollow">Using Intellisense</a> </p>