VS2005 Tip: Which file am I working on?
 I have it on good authority that the option "Track Active Item in Solution Explorer" is OFF by default in Visual Studio 2005. (It was on for me... but my build is... kind a weird) In this case, you won't know which exact file you're working on: only its name. This is a huge pain if you've got multiple projects that each contain files with the same name (e.g. "Web.config") So if this is a problem for you... head into Tools | Options | "Projects and Solutions" | General and check the check box for "Track Active Item in Solution Explorer" Good night!
 (oh here's why it's sometimes on, sometimes off: "By default, the C# profile has this disabled, while the Web profile has this on" -- thanks to Scott Guthrie)
'Jiho Han' on Thu, 20 Apr 2006 11:02:14 GMT, sez: Well according to VS2005 Help:
Track Active Item in Solution Explorer
When selected, Solution Explorer automatically opens the folder for the active item, scrolls to its node, and selects its name. The selected item changes as you work with different files within a project or solution, or different components within a designer. When this option is cleared, the selection in Solution Explorer does not change automatically. This option is enabled by default.
The document could be lying and it won't be the first time...
|