[2005] Auto string/bracket completion?
I've search through the settings and haven't found an option for this, does anyone know if it's possible to configure VS 2005 to autocomplete brackets and strings while I type?
ie. When I type:
xmldoc.AppendChild(
VS will place the ")" for me and put the cursor inside the brackets?
Re: [2005] Auto string/bracket completion?
I wish.....MessageBox.Show("blah blah <hack hits enter>
Always gives me an error cause I didn't go back and put on the closing parentheses. :mad:
Re: [2005] Auto string/bracket completion?
I don't think that vs 2005 will dothat, but on the other hand, i you type
xmldoc.AppendChild the correct number of parameters
then VS will put the brackets for u if the overload exists
example
messageBox.show "My text"
then VS will put the brackets
mesageBox.show("My Text")