Link to home
Create AccountLog in
Avatar of ESQuicksall
ESQuicksallFlag for United States of America

asked on

Macro to search the browse information

I'm programing is C. I want to create a VS2005 macro that will move me directly from a source code edit window to the <search> selection of the Object Browser window. Is there a command or series of commands I can use to make such a macro?

See the attached file "Browse view". The selection I'm talking about is where the word <Search> is.
browse.bmp
ASKER CERTIFIED SOLUTION
Avatar of alexcohn
alexcohn
Flag of Israel image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of ESQuicksall

ASKER

Thanks, that works for me. Is there a place where I can read up on all of the various commands for writing macros?
The Visual Studio uses Visual Basic .NET as macro language. Its object model is very rich, too.

Usually, I simply record a macro (via Ctrl-Shift-R) and analyze he result. MSDN provides an waltkthrough example of such approach: http://msdn.microsoft.com/en-us/library/bb187318(VS.80).aspx.