View Single Post
 
Old 02-18-2020, 06:59 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

I haven't studied the code, but the comments already tell you what you should input. For example:
Code:
Public Const open_quote                         As String = "("")"
might become:
Code:
Public Const open_quote                         As String = "“"
I have no idea that the '("")' is supposed to represent. Likewise:
Code:
Public Const close_quote                        As String = """"
might become:
Code:
Public Const close_quote                        As String = "”"
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote