#65 Edit.WordComplete via Intellisense

Whenever you can invoke statement completion, you can also execute the Edit.CompleteWord command.  This command will complete a word that is partially complete with no other possibilities.  And if there are other multiple possibilities, the … [Continue reading]

#64 Keyboard Shortcut to Display Quick Info Tooltip

As you mouse over a method in the Editor, a nice tooltip (as seen in the image below) is displayed for you showing you general information about the method, parameters, overloads, possible exceptions, and other documentation pulled from the meta data … [Continue reading]

#63 Copy Paste Parameter Info from the Tooltip

Intellisence is great. It shows us a lot, and mostly at the perfect time. When parameter info is being displayed in a tooltip, did you know you can copy or paste this information? This video trick shows you how. [CTRL]+[ALT]+[SHIFT]+[P] Paste the … [Continue reading]

#62 Display parameter info for a function

Intellisense is great – probably the greatest thing ever invented to help developers productivity. But ListMembers isn’t always what you want. If you have CTRL+Space embedded in your brain telling Visual Studio to “Show my what I … [Continue reading]

WPF: To Screen Stack or Load On Demand ??

In WPF which is better, to Screen Stack, or Load on Demand. By ScreenStack, I mean to load all the screen dynamically onto a stack, and then set the visible property of all to false, except the one you want displayed. Like a stack of pancakes, … [Continue reading]