straight quotes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Require straight [ " ] quotes PERMANENTLY.
Have unchecked the boxes in Auto Format and Auto Format As You Type yet the
program always resets to smart quotes. Is there a way to set this globally
for any and all existing and future documents?

Thanks
 
Hi Suzanne:
1. The /a switch did nothing
2. Unclear if there was a space before the /a. Adding a space just opened a
blank doc
3. The recommended registry changes appear to apply to 2002 & OLDER versions
4. Ours is Word 2003

Suzanne S. Barnhill said:
It would appear that your options are not being saved. See
http://word.mvps.org/FAQs/AppErrors/MissngMenusEtc.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Hudson said:
Require straight [ " ] quotes PERMANENTLY.
Have unchecked the boxes in Auto Format and Auto Format As You Type yet the
program always resets to smart quotes. Is there a way to set this globally
for any and all existing and future documents?

Thanks
 
The article applies to all Word versions; it just hasn't been updated.
Opening Word with the /a switch just starts Word in Safe Mode; you should
expect it to open a blank document.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Hudson said:
Hi Suzanne:
1. The /a switch did nothing
2. Unclear if there was a space before the /a. Adding a space just opened a
blank doc
3. The recommended registry changes appear to apply to 2002 & OLDER versions
4. Ours is Word 2003

Suzanne S. Barnhill said:
It would appear that your options are not being saved. See
http://word.mvps.org/FAQs/AppErrors/MissngMenusEtc.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Hudson said:
Require straight [ " ] quotes PERMANENTLY.
Have unchecked the boxes in Auto Format and Auto Format As You Type
yet
the
program always resets to smart quotes. Is there a way to set this globally
for any and all existing and future documents?

Thanks
 
OK--Thanks

Suzanne S. Barnhill said:
The article applies to all Word versions; it just hasn't been updated.
Opening Word with the /a switch just starts Word in Safe Mode; you should
expect it to open a blank document.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Hudson said:
Hi Suzanne:
1. The /a switch did nothing
2. Unclear if there was a space before the /a. Adding a space just opened a
blank doc
3. The recommended registry changes appear to apply to 2002 & OLDER versions
4. Ours is Word 2003

Suzanne S. Barnhill said:
It would appear that your options are not being saved. See
http://word.mvps.org/FAQs/AppErrors/MissngMenusEtc.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Require straight [ " ] quotes PERMANENTLY.
Have unchecked the boxes in Auto Format and Auto Format As You Type yet
the
program always resets to smart quotes. Is there a way to set this globally
for any and all existing and future documents?

Thanks
 
If the registry setting isn't holding after resetting as described in the
article Suzanne has posted you can force the issue with a set of auto macros
in normal.dot. Word 2003 has a bad habit of forgetting some of its
preferences. Curiously these are not the same settings for all users. The
following taken from my own machine, would help in those circumstances and
covers the more obvious problem areas. I have added the quotes setting:

It should be fairly obvious what each of the lines does. You can change add
or remove preferences as required
http://www.gmayor.com/installing_macro.htm

Sub AutoNew()
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
Options.AutoFormatAsYouTypeReplaceQuotes = False
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
Options.AutoFormatAsYouTypeReplaceQuotes = False
End Sub

Sub AutoExec()
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
Application.OnTime _
When:=Now + TimeValue("00:00:01"), Name:="CodesOff"
End Sub

Sub CodesOff()
On Error Resume Next
ActiveWindow.ActivePane.View.ShowAll = False
End Sub



--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>


OK--Thanks

Suzanne S. Barnhill said:
The article applies to all Word versions; it just hasn't been
updated. Opening Word with the /a switch just starts Word in Safe
Mode; you should expect it to open a blank document.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

Hudson said:
Hi Suzanne:
1. The /a switch did nothing
2. Unclear if there was a space before the /a. Adding a space just
opened a blank doc
3. The recommended registry changes appear to apply to 2002 & OLDER
versions
4. Ours is Word 2003

:

It would appear that your options are not being saved. See
http://word.mvps.org/FAQs/AppErrors/MissngMenusEtc.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

Require straight [ " ] quotes PERMANENTLY.
Have unchecked the boxes in Auto Format and Auto Format As You
Type yet the program always resets to smart quotes. Is there a
way to set this globally for any and all existing and future
documents?

Thanks
 
Thanks for the info--although we seem to have overcome the problem, your data
may be helpful!

Graham Mayor said:
If the registry setting isn't holding after resetting as described in the
article Suzanne has posted you can force the issue with a set of auto macros
in normal.dot. Word 2003 has a bad habit of forgetting some of its
preferences. Curiously these are not the same settings for all users. The
following taken from my own machine, would help in those circumstances and
covers the more obvious problem areas. I have added the quotes setting:

It should be fairly obvious what each of the lines does. You can change add
or remove preferences as required
http://www.gmayor.com/installing_macro.htm

Sub AutoNew()
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
Options.AutoFormatAsYouTypeReplaceQuotes = False
End Sub

Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
Options.AutoFormatAsYouTypeReplaceQuotes = False
End Sub

Sub AutoExec()
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
Application.OnTime _
When:=Now + TimeValue("00:00:01"), Name:="CodesOff"
End Sub

Sub CodesOff()
On Error Resume Next
ActiveWindow.ActivePane.View.ShowAll = False
End Sub



--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>


OK--Thanks

Suzanne S. Barnhill said:
The article applies to all Word versions; it just hasn't been
updated. Opening Word with the /a switch just starts Word in Safe
Mode; you should expect it to open a blank document.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

Hi Suzanne:
1. The /a switch did nothing
2. Unclear if there was a space before the /a. Adding a space just
opened a blank doc
3. The recommended registry changes appear to apply to 2002 & OLDER
versions
4. Ours is Word 2003

:

It would appear that your options are not being saved. See
http://word.mvps.org/FAQs/AppErrors/MissngMenusEtc.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

Require straight [ " ] quotes PERMANENTLY.
Have unchecked the boxes in Auto Format and Auto Format As You
Type yet the program always resets to smart quotes. Is there a
way to set this globally for any and all existing and future
documents?

Thanks
 
Back
Top