Home All Groups Group Topic Archive Search About

Properties window is not shown

Author
12 Nov 2006 5:38 PM
Evgeny
Suddenly Properties Window is disappeared in IDE of VS 2005. Click on F4 or
View\Properties Window does not help. It is very annoyed. Could somebody
help me? Thank you
Evgeny
Additional details: VS 2005 is installed on a terminal server and others
users of the same VS do not have this problem. So it seems to be connected
to my profile.

Author
13 Nov 2006 1:22 PM
Ciaran O''Donnell
It is probably shown somewhere but invisible. Put this in a macro and run it:

Sub a()
        Dim w As Window

        For Each w In DTE.Windows
            If (w.Caption = "Properties") Then
                w.Visible = True
                ' w.Width = 100
                w.IsFloating = True
                w.Top = 0
                w.Left = 0

            End If
        Next


Ciaran O'Donnell

Show quote
"Evgeny" wrote:

> Suddenly Properties Window is disappeared in IDE of VS 2005. Click on F4 or
> View\Properties Window does not help. It is very annoyed. Could somebody
> help me? Thank you
> Evgeny
> Additional details: VS 2005 is installed on a terminal server and others
> users of the same VS do not have this problem. So it seems to be connected
> to my profile.
>
>
>
Author
14 Nov 2006 6:11 AM
Evgeny Kleiman
Dear Ciaran,
Thank you very much for your advice, it was really helpful and solved my
problem
(just one correction: end sub at the end was missed).
May be you could help in something close to this: one of our programmers
(that works on the same terminal server) doesn't see command Macros at all
(under Tools). How could it be fixed?
Thank you
Evgeny Kleiman

Show quote
"Ciaran O''Donnell" wrote:

> It is probably shown somewhere but invisible. Put this in a macro and run it:
>
>  Sub a()
>         Dim w As Window
>
>         For Each w In DTE.Windows
>             If (w.Caption = "Properties") Then
>                 w.Visible = True
>                 ' w.Width = 100
>                 w.IsFloating = True
>                 w.Top = 0
>                 w.Left = 0
>
>             End If
>         Next
>
>
> Ciaran O'Donnell
>
> "Evgeny" wrote:
>
> > Suddenly Properties Window is disappeared in IDE of VS 2005. Click on F4 or
> > View\Properties Window does not help. It is very annoyed. Could somebody
> > help me? Thank you
> > Evgeny
> > Additional details: VS 2005 is installed on a terminal server and others
> > users of the same VS do not have this problem. So it seems to be connected
> > to my profile.
> >
> >
> >

AddThis Social Bookmark Button