peter was telling us:
peter nous racontait que :
> Hello,
>
[quoted text clipped - 8 lines]
> but in the protected section travels from CheckBox to CheckBox
> (eating up the Checked-status in the process).
<snip>
> Question:
> * How can I change the behaviour of PageDown (in a Protected section)?
Have you tried unprotecting the section, jumping to the next one and
reprotecting it?
See Protect / Unprotect in the on-line VBA help.

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
Aquarius - 17 Dec 2004 14:20 GMT
Jean-Guy,
BRILLIANT! Your remark is sooo simple; stupid I did not come up with it ;-)
(BTW: the protected section is 4)
Sub myPageDown()
MsgBox "PageDown"
ActiveDocument.Sections(4).ProtectedForForms = False
With Selection
.MoveDown Unit:=wdScreen, Count:=1
If .Sections(1).Index = 4 Then .GoToNext wdGoToSection
End With
ActiveDocument.Sections(4).ProtectedForForms = True
End Sub
This works. Thanks!
regards,
pweter
> peter was telling us:
> peter nous racontait que :
[quoted text clipped - 20 lines]
> reprotecting it?
> See Protect / Unprotect in the on-line VBA help.
Jean-Guy Marcil - 17 Dec 2004 14:41 GMT
Aquarius was telling us:
Aquarius nous racontait que :
> Jean-Guy,
> BRILLIANT! Your remark is sooo simple; stupid I did not come up with
> it ;-)
LOL
Don't worry, I know how it is... Sometimes we are so deep in our problem we
can't see the answer floating on the surface... Been there!
Glad I could help!

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org