I want to turn off regions handling (small + and - signs in the left side, used for regions collapsing) for C/C++ files in Visual Studio 2010.
Tools -> Options -> Text Editor -> C/C++ Formatting -> Enable Outlining -> False
You need to reopen file for this taking effect.
Related
I'm using visual studio 2015 & MFC. (windows 10)
Someday, Asynchronized resource & code.
When I check control or dialog's property, events list is empty.(message also)
I can't automatic create event handler function by clicking button.
Please, someone solve this problem.
All project same. Even I create new solution.
That's because intellisense or its database is disable. I encountered this recently.
Check these options, should be:
IDE Tools menu -> Options -> Text Editor -> C/C++ -> Advanced -> Disable Database = False
IDE Tools menu -> Options -> Text Editor -> C/C++ -> Advanced -> Disable Intellisence = False
IDE Tools menu -> Options -> Text Editor -> C/C++ -> Advanced -> Rescan Solution Interval = 0
Open an empty VS IDE, fix the options, and reopen the project, everything should be fine.
#Michael Walz~ This guy illustrate this problem clearly enough, dont be nit-pick to non-native speakers
Where in Visual Studio do I set the option to automatically add a new line?
That isn't an automatic new line, it is showing you that the editor has word-wrapped the content onto the next line.
You can turn it off in the options in Visual Studio. To do so, go to Tools -> Options -> Text Editor -> All Languages -> General (you can also do it for a specific language as well).
You currently have word wrap turned on, as well as the visual glyph (the little green arrow in your screenshot).
Where can i change the settings of autocomplete / intelliSense in visual studio 2010?
- Suggestions list shows for every character typed, somewhat annoying.
- Spacebar(and a lot of other characters) is commiting suggestions.
to edit the auto-complete / intellisense settings in visual studio 2010.
go to Tools -> Options... -> TextEditor -> C# -> IntelliSense
Default settings will always show a suggestion list for every character you type, and pressing spacebar (as well as a lot of other stupid characters) will always "commit" the current selected suggestion. Turn that dumb stuff off. Ofcourse you want the Enter key as the "commit" action, to do that just remove all characters and uncheck "Commited by pressing the spacebar".
http://msdn.microsoft.com/en-us/library/vstudio/fcf2zk43(v=vs.100).aspx
Tools -> Options -> Text Editor -> C# -> IntelliSense
Is there a way to setup visual studio 2008 to automatically collapse regions/functions/methods when the code behind is first opened?
In Visual Studio 2010 this seems to auto collapse regions but not methods, classes, etc:
Tools -> Options -> Text Editor -> C# -> Advanced -> Check "Enter Outlining mode when files open".
I use the short-cut Ctrl + M, L to toggle collapsed regions.
Can any one tell me how to turn off automatic outlining in Visual Studio? Outlining is the feature that collapses code into programmer defined regions.
In my opinion, there are precious few circumstances where outlining is useful. Yes, it makes large files easier to navigate, but mostly it obscures complexity. My preference would be to have this feature turned off by default when opening a source file.
In Visual Studio, go to Tools > Options > Text Editor > C# > Advanced
Clear the checkbox Enter outlining mode when files open
Tools -> Options -> Text Editor -> C# -> Advanced -> Outlining.
For VB it's Tools - Options - Text Editor - Basic - VB Specific - Enable outlining mode
For VS2008, it's under Tools – Options – Text Editor – C/C++ - Formatting - Enter outlining mode when files open.
For C/C++ in Visual 2017:
Go to Tools > Options > Text Editor > C/C++ > View
Then under > Outlining, set Enable Outlining to False.