I have latest beta and VStudio Professional 2005 AUGUST CTP. under C# I have the following bug:
So, when I add a new control to a form and then change it's name, say from "m_ctlSomeOldName" to "m_ctlSome" then save the form design and switch to source text and type m_ctlSome it does not matter if I type it as this.m_ctlSome or simply m_ctlSome - I get no intellisence during typing. VAssist does not see it. It proposes the old name - m_ctlSomeOldName. But, when I am ready with typing ctlSome and press "." ctlSome. - I get the correct list of members...
testing a default windows application in C#, using VS 2005 beta 2 and VA 1422 with 3 button controls placed on the form.
typing the underscore in "m_" seems to upset the intellisense. however pressing CTRL-SPACE at this point produces a listbox showing the current names of the three controls.
even when moving very quickly from the form designer to the code, i always get the new name for the button once i press CTRL-SPACE.
Hi ! I just got the bug again: addad a Button m_SomeButton in source text when I type
m_ - a list opens, but it does not have my button. I type further m_Som - and list disappears. m_Som gots last letter unterlined with a dark-red marker. I press Ctrl-Space and (!) somebody autocompletes to m_SomeButton
I use LATEST version of VAssist and VS2005 Release Candidate 1. (C#)
using VA 1426 (the current latest, new builds are posted now and then so the actual version number is important) and VS 2005 RC1 i cannot reproduce this using a C# form.
by the sounds of it, it sounds like a timing issue. the list disappearing makes sense if you type in a string that does not match to any of the items.
how easily can you reproduce this? what happens if you wait for 30 seconds before editing the code? it could simply be that you need to give VA time to catch up with the change to the code before it knows this new name.