WordBasic?
How about
Sub ToggleFull()
MsgBox "ToggleFull"
ActiveWindow.View.FullScreen = Not ActiveWindow.View.FullScreen
If ActiveWindow.View.FullScreen Then
MsgBox "Add code to run when entering full screen mode here"
Else
MsgBox "Add code to run when exiting full screen mode here"
End If
End Sub

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Hi Frank,
>
[quoted text clipped - 29 lines]
>>
>> Frank
Klaus Linke - 09 Apr 2007 11:47 GMT
Hi Graham,
Don't knock WordBasic <g>
It's just the code Word runs if you use any control in the user interface.
So IMHO, it's much easier to run the code Word would run anyway, when you
hijack any control, than to try to mimick it with VBA.
I've very often seen the macro recorder recording different code for some
control, depending on the current selection, the view, option settings, and
so on. Or the macro recorder missed stuff the control did.
Regards,
Klaus
> WordBasic?
> How about
[quoted text clipped - 42 lines]
>>>
>>> Frank