AutoHide Anchor Window

J

JuneTheSecond

objwin.VisWindowStates=visWSAnchorAutoHide
does not hide anchor window.
In the help document of VisWindowStates contsants
of Visio2003 in my local Version, there is written that
visWSAnchorAutoHide is &H200. It is same in the
object blowser. &H200 is correct?
To me, &H300 seems correct.
 
J

JuneTheSecond

I am sorry my description was not easy to understand.

For example,
Dim mywin As Visio.Window
Set mywin =
Application.ActiveWindow.Windows.ItemFromID(visWinIDDrawingExplorer)
mywin.Visible = True
mywin.WindowState = visWSAnchorLeft + &H300
makes hided anchor window, but
mywin.WindowState = visWSAnchorLeft + visWSAnchorAutoHide
does not hide anchor window until you click title-band of the anchor window.
 
Top