WORKAROUND
To work around this behavior, use any of the following methods.
Method 1: Insert a Special Character
Commonly used symbols, such as the em dash and the copyright symbol, are
already assigned to keystrokes. To see the list of preassigned symbol
keystrokes, click Symbol on the Insert menu and then click the Special
Characters tab.
Method 2: Create Individual Shortcut Keys For Each Symbol
Set up individual keystrokes for ASCII characters so that each symbol has a
unique keystroke. To assign keystrokes to individual symbols, follow these
steps:
- On the Insert menu, click Symbol.
- In the Font list, click to select the font that you want.
- Click to select the symbol that you want.
- Click Shortcut Key.
- In the "Press New Shortcut Key" box, press the keystrokes that you want
to assign to the symbol.
If the Currently Assigned To area indicates that the keystroke is
already in use by another function, erase the contents of the Press New
Shortcut Key box and type a new keystroke.
- Click Assign.
- Repeat steps 2 through 6 for each symbol you want to assign to a
keystroke.
- When finished, click OK.
Method 3: Create a Macro That Asks for the ASCII Number
The following sample macro prompts you for an ASCII number and inserts the
corresponding character. Use the appropriate method for your version of
Word.
NOTE: Before running the macro, be sure to choose the appropriate
font from the Font menu for the character you want to insert.
Each font may have a different symbol for the ASCII character you
are using.
Word 98 Macintosh Edition:
Microsoft provides programming examples for illustration only, without warranty either
expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes
that you are familiar with the programming language being demonstrated and the
tools used to create and debug procedures. Microsoft support professionals can
help explain the functionality of a particular procedure, but they will not
modify these examples to provide added functionality or construct procedures to
meet your specific needs. If you have limited programming experience, you may
want to contact a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please visit the following Microsoft Web site:
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
Sub ASCII()
num = Val(InputBox$("Type a 3-digit ASCII number."))
Selection.InsertAfter Chr$(num)
Selection.Move Unit:=wdCharacter
End Sub
Word 6.0:
Sub MAIN
num = Val(InputBox$("Type a 3-digit ASCII number."))
Insert Chr$(num)
End Sub
Method 4: Create An AutoText Entry For Each Symbol
To create an AutoText entry, follow these steps:
- On the Insert menu, click Symbol.
- In the Font list, click to select the font you want to use.
- Click to select the symbol you want to insert.
- Click Insert, and then click Close.
- Select the symbol (which is now in the document).
- Use the appropriate method for your version of Word:
Word 98 Macintosh Edition: On the Insert menu, point to AutoText and
then click New.
Word 6.0: On the Edit menu, click AutoText.
- In the "Please name your AutoText entry" (Name) box, type a descriptive
name for your AutoText entry, and then click OK (Add).
- Repeat steps 1 through 7 for each symbol you want to create an AutoText
entry for.
To insert the symbol from your AutoText entry, use the appropriate method
for your version of Word:
Word 98 Macintosh Edition: On the Insert menu, point to AutoText and
then click AutoText. Click to select the AutoText entry you want, and
then click Insert.
-or-
Word 6.0: On the Edit menu, click AutoText. Click to select the desired
AutoText entry and then click Insert.