Hi,
Hope I understand - you want to shift your document window, which is hidden
bellow toolbar?
Then try this macro, which will move the document window in specified x,y,
values:
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 24.10.2006 by maclady maclady
'
With ActiveWindow
.Left = 122
.Top = 77
End With
End Sub
Do you know how to handle with VBA macros? If not,post back.
Or
1.you can just open visualbasics editor by Tool>macro>visual basics editor
2. then open immediate window by view>immediate window> and type there:
ActiveWindow.Left = 122
3.Hit enter
4. write ActiveWindow.top = 77
5. Hit enter
Just note that this will work with active window, this means you have to
click wherever in your document window before running the macro or the
commands.
Hope this will help.