Cannot Insert ASCII Null Character From The Keyboard

Last reviewed: July 30, 1997
Article ID: Q86244
The information in this article applies to:
  • Microsoft Word for Windows, versions 1.0, 1.1, 1.1a, 2.0, 2.0a, 2.0a-CD, 2.0b, 2.0c, 6.0, 6.0a, 6.0c

SUMMARY

All ASCII and ANSI character codes can be inserted in Microsoft Word for Windows using the ALT+<Character Code> key combination except for ASCII 0 (HEX 00). There is no way to enter this code directly from the keyboard; however, you can create a macro to insert this character in your Word for Windows document.

MORE INFORMATION

You may need to insert the ASCII Null character in a PRINT field as a printer command. Use the following macro to insert this character at the insertion point:

   Sub MAIN
   Insert Chr$(0)
   End Sub

The complete Ansi Character set values for decimal and hexidecimal can be found in Appendix C of "Word for Windows User's Reverence," version 1.1, pages 427-430.

REFERENCES

"Word for Windows User's Reverence," version 1.1, pages 427-430.

Kbcategory: kbusage kbmacro KBSubcategory:


Additional query words: 6.0 00$ string 1.0 1.10 1.10a word6
winword 2.0 winword2 2.0a 2.0a-CD 2.0b 2.0c
Version : 1.x 2.x 6.0 6.0a 6.0c
Platform : WINDOWS


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 30, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.