Visio Pro 2007 - Database properties window does not display

D

datamama

I just installed Visio Pro and cannot get the database properties window to
display upon double click on an entity. Is this working for anyone ?

Thanks ...
 
C

Chris Roth [Visio MVP]

Hi DM,

I wonder if the window has somehow gotten moved off the screen?

Try running this little script in the VBA editor (Alt+F11 will get you
there fast...)

Just paste this into the ThisDocument module of a dummy DB drawing and
run it using F5. Hopefully it will find the window and move it to the
top-left where you can see it.

-----------
Sub GetDbWindow()

Dim win As Visio.Window
For Each win In Visio.ActiveWindow.Windows
If win.Caption = "Database Properties" Then
Call win.SetWindowRect(0, 0, 200, 200)
Exit For
End If
Next win

End Sub
-----------


--
Hope this helps,

Chris Roth
Visio MVP


Visio Guy: Smart Graphics for Visual People

Articles: http://www.visguy.com
Shapes: http://www.visguy.com/shapes
Dev: http://www.visguy.com/category/development/
Forum: http://www.viguy.com/vgforum
 

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

Top