Properties window is not shown

  • Thread starter Thread starter Evgeny
  • Start date Start date
E

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.
 
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
 
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
 
Back
Top