Groups | Blog | Home
all groups > visual studio .net setup > november 2006 >

visual studio .net setup : Properties window is not shown


Evgeny
11/12/2006 7:38:03 PM
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.

Ciaran O''Donnell
11/13/2006 5:22:01 AM
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

[quoted text, click to view]
Evgeny Kleiman
11/13/2006 10:11:01 PM
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

[quoted text, click to view]
AddThis Social Bookmark Button