Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我需要在带有特殊字符的 vb 脚本中包含法语文本 - REJETÉE。当我添加文本时,它显示为 REJETÉE。我如何包括以下内容?我可以使用:É 或 É。但它显示了例外。
Visual Basic 本身只支持 ASCII 字符。'É' 是一个 ANSI 字符,因此不受支持。如果您正在写入文本文件,您可能希望打印字符的直接 ANSI 值。如果您现在使用使用 ANSI 编码的文本编辑器,您将正确看到“É”。
此外,也许以下内容可以作为调试输出,您必须尝试一下:
Debug.Print chr$(200)
写入值 200 时应该得到“È”字符。正如我所说,我不知道这是否适用于调试打印机,但在写入文本文件时它会起作用。