MS Word VBA 中的奇怪问题。将符号结果插入空方块中
我在 MS Word 2010 VBA 中遇到一个奇怪的问题。 我添加了一个功能区命令,调用以下代码 Selection.InsertSymbol 字体:=“Wingdings 3”,CharacterNumber:=-4028,Unicode:=True 打开 Word 应用程序几分钟后,调用此行 结果是空的方块,就好像没有找到字体一样。之后一切正常并且符号书写正确。有什么解决方法吗? 发现了类似的问题
我在这里[on SO][1] [1] :使用 VBA 将符号插入 PowerPoint 2007 中的文本,但我不确定是否可以使用 MS Word 中提供的解决方案。 也许有一种方法可以预加载 Windlings 字体?
I experience a strange problem in MS Word 2010 VBA.
I added a ribbon command calling the following code
Selection.InsertSymbol Font:="Wingdings 3", CharacterNumber:=-4028, Unicode:=True
After opening Word application for couple of minutes the call to this line
results in empty squares as if the font was not found. After that all works normally and the symbols are written correctly. Is there any workaround?
I found similar question here [on SO][1]
[1]: Inserting symbols into text in PowerPoint 2007 using VBA but I am not sure that I can use the solution provided there in MS Word.
Maybe there is a way to just preload the Windlings font?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CharacterNumber
是 Variant 类型,因此大多数情况下它应该采用字符串值。只需将数字用双引号引起来即可。这对我有用:CharacterNumber
is a Variant type, so it should take string values for most things. Just enclose the number in double-quotes. This one works for me: