HighTechTalks DotNet Forums  

Lost my "Error List" window

Visual Studio.net (IDE) microsoft.public.vsnet.ide


Discuss Lost my "Error List" window in the Visual Studio.net (IDE) forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
RobertPhoenix
 
Posts: n/a

Default Lost my "Error List" window - 09-04-2007 , 05:01 PM






Something has happened with my copy of Visual Studio 2005.

When I click on View/Error List (to try to see the "Error List"
window) I don't see any error list window. After clicking View/Error
List there is no visible active window.

If I make Visual Studio go to full screen, and then click on View/
Error List, I do get a visible Error List window, but no matter where
I place it, as soon as I disable View/Full Screen the error list
disappears again.

I've tried doing an Alt/Space when the Error list is presumably
active, and then pressing 'M' for move, but I haven't been able to
make it visible by that means.

Any ideas?


Reply With Quote
  #2  
Old   
Jeff Johnson
 
Posts: n/a

Default Re: Lost my "Error List" window - 09-14-2007 , 04:30 PM






"RobertPhoenix" <robert.wilkinson (AT) gmail (DOT) com> wrote


Quote:
Something has happened with my copy of Visual Studio 2005.

When I click on View/Error List (to try to see the "Error List"
window) I don't see any error list window. After clicking View/Error
List there is no visible active window.

If I make Visual Studio go to full screen, and then click on View/
Error List, I do get a visible Error List window, but no matter where
I place it, as soon as I disable View/Full Screen the error list
disappears again.

I've tried doing an Alt/Space when the Error list is presumably
active, and then pressing 'M' for move, but I haven't been able to
make it visible by that means.
Being a tool window the Alt-Space trick won't work since it has no window
menu.

Go to Tools | Macros | Record a Temporary Macro and do something, anything.
Then open the macro editor and paste in this code (overwriting whatever
action you recorded):

With DTE.Windows.Item(EnvDTE80.WindowKinds.vsWindowKind ErrorList)
.IsFloating = True
.Visible = True
.Left = 5
.Top = 5
End With

Then run the temporary macro. Note that this will make the window a floating
window, and you'll have to right-click the title bar and make it dockable
again. I couldn't figure out how to do that in the few minutes I spent on
this.




Reply With Quote
  #3  
Old   
K Giesen
 
Posts: n/a

Default Re: Re: Lost my "Error List" window - 06-06-2011 , 01:17 AM



I had the same problem, but sadly Jeffs macro didn't work for me (when it comes to ".IsFloating = True" I get an error message with a COM component having a HRESULT E_FAIL.

For me worked the following:

Go to Window|Reset Window Layout.

After that any changes of your window layout are lost, but you can acces the Error List via menue or shortcut.



Quote:
On Tuesday, September 04, 2007 6:01 PM RobertPhoenix wrote:

Something has happened with my copy of Visual Studio 2005.

When I click on View/Error List (to try to see the "Error List"
window) I don't see any error list window. After clicking View/Error
List there is no visible active window.

If I make Visual Studio go to full screen, and then click on View/
Error List, I do get a visible Error List window, but no matter where
I place it, as soon as I disable View/Full Screen the error list
disappears again.

I've tried doing an Alt/Space when the Error list is presumably
active, and then pressing 'M' for move, but I haven't been able to
make it visible by that means.

Any ideas?

Quote:
On Friday, September 14, 2007 5:30 PM Jeff Johnson wrote:

"RobertPhoenix" <robert.wilkinson (AT) gmail (DOT) com> wrote in message
news:1188943310.322941.270310 (AT) r29g2000hsg (DOT) googlegroups.com...


Being a tool window the Alt-Space trick won't work since it has no window
menu.

Go to Tools | Macros | Record a Temporary Macro and do something, anything.
Then open the macro editor and paste in this code (overwriting whatever
action you recorded):

With DTE.Windows.Item(EnvDTE80.WindowKinds.vsWindowKind ErrorList)
.IsFloating = True
.Visible = True
.Left = 5
.Top = 5
End With

Then run the temporary macro. Note that this will make the window a floating
window, and you'll have to right-click the title bar and make it dockable
again. I couldn't figure out how to do that in the few minutes I spent on
this.

Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.