Properties window is not shown

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.
 
G

Guest

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
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top