M
Melissa
Hi there,
We received some code from a developer that was supposed to set a variety of
settings when word is first opened or when a document is created or opened,
and since receiving it the disable features box in Tools, options, save keeps
becoming checked when we try to save. Even if I open the document and check
that it is off, when I try to save the document it becomes checked.
I thought that it was the following code that determines whether it is
checked or not (which appears in my normal.dot template and my startup.dot
template), but can't understand why the box becomes checked on the save.
Should I be looking for something else that is causing this?
Sub AutoOpen()
With ActiveDocument
.DisableFeatures = False
.Compatibility(wdDontUseHTMLParagraphAutoSpacing) = False
End With
End Sub
Sub AutoNew()
With ActiveDocument
.DisableFeatures = False
.Compatibility(wdDontUseHTMLParagraphAutoSpacing) = False
End With
End Sub
Any suggestions would be very welcomed, as this is causing headaches across
the office.
Thank you,
Melissa
We received some code from a developer that was supposed to set a variety of
settings when word is first opened or when a document is created or opened,
and since receiving it the disable features box in Tools, options, save keeps
becoming checked when we try to save. Even if I open the document and check
that it is off, when I try to save the document it becomes checked.
I thought that it was the following code that determines whether it is
checked or not (which appears in my normal.dot template and my startup.dot
template), but can't understand why the box becomes checked on the save.
Should I be looking for something else that is causing this?
Sub AutoOpen()
With ActiveDocument
.DisableFeatures = False
.Compatibility(wdDontUseHTMLParagraphAutoSpacing) = False
End With
End Sub
Sub AutoNew()
With ActiveDocument
.DisableFeatures = False
.Compatibility(wdDontUseHTMLParagraphAutoSpacing) = False
End With
End Sub
Any suggestions would be very welcomed, as this is causing headaches across
the office.
Thank you,
Melissa