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