B
Bruno.H.
I try to find proper solution HOW TO PREVENT USERS FROM ACCESSING PASSWORD
PROTECTED HEADER AND FOOTER in MS Word 2003 and 2007 for 3 months by now…
???!!!
I find two solutions - one I figured how, second, not for a million years…
Even more, few more questions reviled during this above discovering HOW TO…?
I try to contact 2 MVP's already, both failed with the proper result for me
on the above question.
FIRST PROCEDURE THAT I FIGURED HOW TO (Article ID 888184):
----------------------------------------------------------------------------
To protect the text that is in the header and the footer of a Word document
from changes, follow these steps:
Open the Word document that contains the header and the footer that you want
to protect from changes. Do not open the header or the footer of the
document.
1. Make sure that you are at the top of your Word document: to do this,
press CTRL+HOME.
2. On the Insert menu, click Break.
3. In the Break dialog box, click Continuous under Section break types, and
then click OK.
4. On the Tools menu, click Protect Document.
Now, in Microsoft Office Word 2003, follow these steps:
1. In the Protect Document task pane, click to select the Allow only this
type of editing in the document check box under Editing restrictions, and
then change the box to Filling in forms.
2. Click Select sections.
3. In the Selection Protection dialog box, click to clear the Section 2
check box, and then click OK.
4. Under Start enforcement, click Yes, Start Enforcing Protection.
-------------------
THIS ACTUALLY WORKS 100%, BUT…, I need functions such us Descending and
Ascending, which was not available any more after above procedure!!!
Better understand, I only want to prevent users from accessing Header and
Footer, everything else in the "BODY" of the Document MUST BE FULLY EDITABLE
TO ALL USERS, WITH ALL NORMALL MS WORD FUNCTIONS AND ABILITIES FOR EDITING!!!
Than I experiment with ONLY FOR READING Protection and setup Group to: All.
Unfortunate, that, change the color (YELLOW) of everybody allowed part of the
Document to be editable in full, and even that function of MS Word was with
some restrictions: Underline does not work, many normal and classic MS word
functions also did not work any more after protection was activated…
Even further when I want to Save my .doc / .docx Document to .dotx Document,
the Password protection was not remembered at all, not just one single
time!!!???
- Is this a bug in MS Word 2007 .dotx format???!!!
************************************
SECOND PROCEDURE THAT I DID NOT FIGURED TOTALLY (Article ID ?):
----------------------------------------------------------------------------------
Last thing that I try, with a polite advice of Doug Robbins - Word MVP, is a
proper solution from another respectful Microsoft MVP, Bill Coan, via:
http://www.word.mvps.org/FAQs/Customization/ProtectWord2000PlusHeader.htm .
In fact, I really think that this is finally solution for me, but the
understanding of all this to common user is really difficult, even
impossible...
I will try to explain shortly what I did, following above Webpage by Bill
Coan:
1. I open my earlier created Word Document (template / .dot).
2. Than I press ALT+F11 and that opened Microsoft Visual Basic.
3. The above mentioned Webpage says:
The following code, pasted into the This Document module of a Word 2000
Template, will keep users out of the header and footer of documents based on
that template:
Option Explicit
'reserve memory for an application variable
Private WithEvents wdApp As Word.Application
Private Sub Document_New()
'assign Word to the application variable
If wdApp Is Nothing Then
Set wdApp = ThisDocument.Application
End If
End Sub
________________________________________
Private Sub Document_Open()
'assign Word to the application variable
If wdApp Is Nothing Then
Set wdApp = ThisDocument.Application
End If
End Sub
________________________________________
Private Sub wdApp_WindowSelectionChange(ByVal Sel As Selection)
'quit if active doc isn't attached to this template
If ActiveDocument.AttachedTemplate <> ThisDocument Then Exit Sub
'get out of the header/footer if we're in it
Select Case Sel.StoryType
Case wdEvenPagesFooterStory, wdEvenPagesHeaderStory, _
wdFirstPageFooterStory, wdFirstPageHeaderStory, _
wdPrimaryFooterStory, wdPrimaryHeaderStory
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
Exit Sub
Case Else
End Select
End Sub
4. The problem is that I don't know where to Paste this Code, because "This
Document Module" existing at least on 3 places here…
Furthermore, in few cases I get even an error: Microsoft Visual Basic:
Compile error: Syntax error.
THAT IS PRETTY MUTCH ALL…
------------------------------------------------------
ONCE AGAIN, I WANT TO CREATE A MICROSOFT WORD 2003 AND / OR 2007 DOCUMENT
(.DOC / .DOCX), OR TEMPLATE (.DOT / .DOTX) that has ALL normally used
abilities and functions fully available to all users, EXCEPT the ability to
change anything in the Header and Footer of that File, without a proper input
Password.
The functions, such us Descending and Acceding must be fully available to
all users, and the marked (one of the way how to protect a Document in MS
Word) "All users" must not coloring text with Yellow color or similar.
I just want to protect Header and Footer of the Document that everybody
cannot accidentally mess up with it content, and that is all.
I never figured that this is so hard, or even impossible to do in MS
Word???!!!
Very great thanks everybody in advanced who can really help me on this
particular problem, and I apologize everybody in advanced for the big novelty
text above, but, I just want to be detailed us possible!!!
PROTECTED HEADER AND FOOTER in MS Word 2003 and 2007 for 3 months by now…
???!!!
I find two solutions - one I figured how, second, not for a million years…
Even more, few more questions reviled during this above discovering HOW TO…?
I try to contact 2 MVP's already, both failed with the proper result for me
on the above question.
FIRST PROCEDURE THAT I FIGURED HOW TO (Article ID 888184):
----------------------------------------------------------------------------
To protect the text that is in the header and the footer of a Word document
from changes, follow these steps:
Open the Word document that contains the header and the footer that you want
to protect from changes. Do not open the header or the footer of the
document.
1. Make sure that you are at the top of your Word document: to do this,
press CTRL+HOME.
2. On the Insert menu, click Break.
3. In the Break dialog box, click Continuous under Section break types, and
then click OK.
4. On the Tools menu, click Protect Document.
Now, in Microsoft Office Word 2003, follow these steps:
1. In the Protect Document task pane, click to select the Allow only this
type of editing in the document check box under Editing restrictions, and
then change the box to Filling in forms.
2. Click Select sections.
3. In the Selection Protection dialog box, click to clear the Section 2
check box, and then click OK.
4. Under Start enforcement, click Yes, Start Enforcing Protection.
-------------------
THIS ACTUALLY WORKS 100%, BUT…, I need functions such us Descending and
Ascending, which was not available any more after above procedure!!!
Better understand, I only want to prevent users from accessing Header and
Footer, everything else in the "BODY" of the Document MUST BE FULLY EDITABLE
TO ALL USERS, WITH ALL NORMALL MS WORD FUNCTIONS AND ABILITIES FOR EDITING!!!
Than I experiment with ONLY FOR READING Protection and setup Group to: All.
Unfortunate, that, change the color (YELLOW) of everybody allowed part of the
Document to be editable in full, and even that function of MS Word was with
some restrictions: Underline does not work, many normal and classic MS word
functions also did not work any more after protection was activated…
Even further when I want to Save my .doc / .docx Document to .dotx Document,
the Password protection was not remembered at all, not just one single
time!!!???
- Is this a bug in MS Word 2007 .dotx format???!!!
************************************
SECOND PROCEDURE THAT I DID NOT FIGURED TOTALLY (Article ID ?):
----------------------------------------------------------------------------------
Last thing that I try, with a polite advice of Doug Robbins - Word MVP, is a
proper solution from another respectful Microsoft MVP, Bill Coan, via:
http://www.word.mvps.org/FAQs/Customization/ProtectWord2000PlusHeader.htm .
In fact, I really think that this is finally solution for me, but the
understanding of all this to common user is really difficult, even
impossible...
I will try to explain shortly what I did, following above Webpage by Bill
Coan:
1. I open my earlier created Word Document (template / .dot).
2. Than I press ALT+F11 and that opened Microsoft Visual Basic.
3. The above mentioned Webpage says:
The following code, pasted into the This Document module of a Word 2000
Template, will keep users out of the header and footer of documents based on
that template:
Option Explicit
'reserve memory for an application variable
Private WithEvents wdApp As Word.Application
Private Sub Document_New()
'assign Word to the application variable
If wdApp Is Nothing Then
Set wdApp = ThisDocument.Application
End If
End Sub
________________________________________
Private Sub Document_Open()
'assign Word to the application variable
If wdApp Is Nothing Then
Set wdApp = ThisDocument.Application
End If
End Sub
________________________________________
Private Sub wdApp_WindowSelectionChange(ByVal Sel As Selection)
'quit if active doc isn't attached to this template
If ActiveDocument.AttachedTemplate <> ThisDocument Then Exit Sub
'get out of the header/footer if we're in it
Select Case Sel.StoryType
Case wdEvenPagesFooterStory, wdEvenPagesHeaderStory, _
wdFirstPageFooterStory, wdFirstPageHeaderStory, _
wdPrimaryFooterStory, wdPrimaryHeaderStory
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
Exit Sub
Case Else
End Select
End Sub
4. The problem is that I don't know where to Paste this Code, because "This
Document Module" existing at least on 3 places here…
Furthermore, in few cases I get even an error: Microsoft Visual Basic:
Compile error: Syntax error.
THAT IS PRETTY MUTCH ALL…
------------------------------------------------------
ONCE AGAIN, I WANT TO CREATE A MICROSOFT WORD 2003 AND / OR 2007 DOCUMENT
(.DOC / .DOCX), OR TEMPLATE (.DOT / .DOTX) that has ALL normally used
abilities and functions fully available to all users, EXCEPT the ability to
change anything in the Header and Footer of that File, without a proper input
Password.
The functions, such us Descending and Acceding must be fully available to
all users, and the marked (one of the way how to protect a Document in MS
Word) "All users" must not coloring text with Yellow color or similar.
I just want to protect Header and Footer of the Document that everybody
cannot accidentally mess up with it content, and that is all.
I never figured that this is so hard, or even impossible to do in MS
Word???!!!
Very great thanks everybody in advanced who can really help me on this
particular problem, and I apologize everybody in advanced for the big novelty
text above, but, I just want to be detailed us possible!!!