How do i change the intellisense settings in VS2008? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T22:29:52Zhttp://stackoverflow.com/feeds/question/1052507http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1052507/how-do-i-change-the-intellisense-settings-in-vs20082How do i change the intellisense settings in VS2008?RCIX2009-06-27T09:41:11Z2009-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#10525162Answer by Ahmed Said for How do i change the intellisense settings in VS2008?Ahmed Said2009-06-27T09:49:57Z2009-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#10525841Answer by Niki for How do i change the intellisense settings in VS2008?Niki2009-06-27T10:36:50Z2009-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#10526262Answer by Halvard for How do i change the intellisense settings in VS2008?Halvard2009-06-27T10:59:07Z2009-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#10526471Answer by splattne for How do i change the intellisense settings in VS2008?splattne2009-06-27T11:11:18Z2009-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>