I have two solutions that I'm working on. Both are WinForm based in VB.NET. When I switch from the solution with 9 projects after making changes to the other with just one project I get a pop up telling me that VS 2010 is having trouble. I've run devenv.exe as administrator and with /log option turned on to create the ActivityLog.XML file. One entry shows up which appears to point to a VS extension but is not much help to me:
<entry>
<record>386</record>
<time>2014/02/06 17:29:28.017</time>
<type>Error</type>
<source>Editor or Editor Extension</source>
<description>System.InvalidOperationException: Requesting a text view host when we
don't have one available. Current state: Closed
 at
Microsoft.VisualStudio.Editor.Implementation.VsTextViewAdapter.get_WpfTextViewHost()

 at
Microsoft.VisualStudio.Editor.Implementation.VsTextViewAdapter.HandleVerticalScroll()

 at
Microsoft.VisualStudio.Editor.Implementation.VsTextViewAdapter.View_LayoutChanged(Object
sender, TextViewLayoutChangedEventArgs e)
 at
Microsoft.VisualStudio.Text.Utilities.GuardedOperations.RaiseEvent[TArgs](Object sender,
EventHandler`1 eventHandlers, TArgs args)</description>
</entry>
I thought I had a solution to this from the article Visual Studio 2010 Crashing on Solution Load. Unfortunately, I am not aware of any bogus code fragments that I created that could cause this.
Any help would be greatly appreciated.