Link to home
Start Free TrialLog 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
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
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.