xld
Banned
- Joined
- Feb 8, 2003
- Messages
- 5,378
F7 was a very usefult tip for me in the VBE!
I know, I saw you look at me when I said it, it was almost respect
F7 was a very usefult tip for me in the VBE!
What does F7 do?
I appreciate that of all the subjects, VBA is the hardest to pitch at the right level. I just assumed that given the number of MVPs, the content would be quite advanced. Not a complaint, just an observation. I still managed to pick up a few tips (All these years I've been writing code and I didn't know about Ctrl+Space to display Intellisense!).
Especially useful on forms, as double-click there opens the object, and I HATE right-click>View Code.
That does not happen to me on your garden variety constants. They retain whatever case characteristics they have in the CONST statement. That only happens to me with enumerated constants - and yes - pi**** me off every time; so I always use intellisense/autocomplete on those.I find especially useful with constants, as I always upper case my constants, but if you enter them in code and put one letter lower case, VBA will change them all, so your constant now has a lower-case letter in it. I just type the first part of my constant, any case, and then Ctrl-Space which completes it AND upper-cases it, hence not destroying my coding style.
That does not happen to me on your garden variety constants. They retain whatever case characteristics they have in the CONST statement. That only happens to me with enumerated constants - and yes - pi**** me off every time; so I always use intellisense/autocomplete on those.
Also, not sure what you consider to be intellisense versus autocompletion; i.e. I had used the terms interchangeably as do others. If you wouldn't mind, perhaps you could clarify?