You can automate source code searches using the autoHotKey script tool: it will open the correct source code well without user input. When you first search for a file, it will take a few seconds, and then it will become instant.
The script code is below. It is used with VS2010:
SourcesRoot = D:\MySourceCodeIsHere Loop { WinWait, Find Source:, IfWinNotActive, Find Source: , , WinActivate, Find Source:, WinWaitActive, Find Source:, ControlGetText, Filename, Edit1, Loop, %SourcesRoot%\%Filename%, , 1 { ControlSetText, Edit1, %A_LoopFileFullPath% break } ControlClick Button2 }
source share