I like to preserve my code vertical readability. But the IDE keeps
changing my tabs when I make a change:
This...
private LayoutStyle m_Layout =
LayoutStyle.Columns;
private ContentStyle m_Layout =
LayoutStyle.Columns;
private ArrayList m_Labels = null;
Becomes..
private LayoutStyle m_Layout = LayoutStyle.Columns;
private ContentStyle m_Layout = LayoutStyle.Columns;
private ArrayList m_Labels = null;
Which is less readable. Is there a way to stop this is the 2005 IDE?
Would be nice to have the IDE align my code verticaly the way I like it.
Tools | Options | Text Editor.

Signature
HTH,
Kevin Spencer
Microsoft MVP
Short Order Coder
http://unclechutney.blogspot.com
The devil is in the yada yada yada
>I like to preserve my code vertical readability. But the IDE keeps
> changing my tabs when I make a change:
[quoted text clipped - 13 lines]
> Which is less readable. Is there a way to stop this is the 2005 IDE?
> Would be nice to have the IDE align my code verticaly the way I like it.