Sorry if this is the wrong place for this post. Please tell me if I should post it elsewhere
In VB .Net 2003, if I type the name of an object, followed by a period, I get different behaviors from the dropdown list of properties, methods, etc. depending upon the type of object I'm dealing with, and on what property I've last used
For example
If I type "Button1.TabIndex = 5
Then the next time I type "Button1." the dropdown list automatically highlights the "TabIndex" property, apparently assuming that the TabIndex property is a likely choice for me. Fine
However, with Labels, no matter what I try, if I type "Label1." then the highlighted property is ALWAYS "TextAlign". This is very frustrating because what I often want is the "Text" property. But if I type "Label1.Text" followed by a space, my ".Text" is ALWAYS changed to ".TextAlign" instead
I thought that perhaps I've set some option that is causing this kind of misbehavior in the editor, but I can't find what that option is. Any suggestions? I haven't seen this behavior on all computers, but I always see it on the computer I use most
Thanks for any advice
Norm Krumpe
|