|
|
|
How to have fun with the Visual Studio Find ComboBox? |
These tips will work on both Visual Studio .NET 2003 and Visual Studio 2005.
- Find a string - type the string and press ENTER Key
- Find the next occurrence of the string - Press ENTER Key again
- Goto a line – type the line number in find combo box and press Ctrl+G
- Goto a file – type the name of the file in find combo box and press Ctrl+Shift+G
- Set breakpoint on a function or event– type the function name in find combo box
and press F9
- Get help – type the keyword in find combo box and press F1
- Find an object - type the string and press F2
|
|
|
|
|
|
|
|
And using command aliases…
- To get a callstack – type “> kb” and press ENTER Key
- To go to a webpage – type “> nav http://www.faqpanel.com”
and press ENTER Key
- To open new file - type “> nf” and press ENTER Key
- To open new project - type “> np” and press ENTER Key
- To open project - type “> op” and press ENTER Key
See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsintro7/html/vxgrfpredefinedcommandlinealiases.asp
for the complete list command aliases.
|
|
|
|
|