Move Stencil Window horicontally on top

M

Mario Wilding

Hello!

I have the following problem:

I need to move the stencil window horicontal on the top. With the mouse
no problem, but with VBA. Know someone how can I do this??

Thanks for answers!

brgds
Mario Wilding
 
J

JuneTheSecond

You might move your stencul window like,,,
mywin.WindowState = visWSDockedBottom
If you wish to change height and width, you might first
your stencil window, and change height and width, and
move it.
 
J

JuneTheSecond

And to set mywin to stencil window,
Set mywin = ActiveWindow.Windows.ItemFromID(1669)
 
Top