明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1446|回复: 5

有关在VBA中输入中文的问题!!!!

[复制链接]
发表于 2004-6-12 01:39:00 | 显示全部楼层 |阅读模式
在VBA中我输入中文后,在CAD中显示的是???(问号),请问该怎样在VBA中输入中文,使得自动生成的CAD图形中显示中文。
发表于 2004-6-12 10:08:00 | 显示全部楼层
天哪!你没有进行字型字体设置吧?
 楼主| 发表于 2004-6-12 15:01:00 | 显示全部楼层
怎样进行字体、字型的设置阿??????我看了帮助不明白阿!!!!!
发表于 2004-6-12 18:49:00 | 显示全部楼层
用以下代码试试: Sub Textstyle()
Dim Txtstyle As AcadTextStyle
Dim Text As AcadText
Dim Txt(2) As Double
Set Txtstyle = ThisDrawing.TextStyles.Add("ºÚÌå")
ThisDrawing.ActiveTextStyle = Txtstyle
Txtstyle.fontFile = "c:\windows\fonts\simhei.ttf"
Txtstyle.Width = 1.2
Txt(0) = 0: Txt(1) = 0: Txt(2) = 0
'在 (0 0 0) 处写入"明经通道示例";高度为5,宽度比为1:1.2
Set Text = ThisDrawing.ModelSpace.AddText("Ã明经通道示例", Txt, 5)
End Sub
发表于 2004-6-12 18:55:00 | 显示全部楼层
用以下代码试试: Sub Textstyle()
Dim Txtstyle As AcadTextStyle
Dim Text As AcadText
Dim Txt(2) As Double
Set Txtstyle = ThisDrawing.TextStyles.Add("黑体")
ThisDrawing.ActiveTextStyle = Txtstyle
Txtstyle.fontFile = "c:\windows\fonts\simhei.ttf"
Txtstyle.Width = 1.2
Txt(0) = 0: Txt(1) = 0: Txt(2) = 0
'在 (0 0 0) 处写入"明经通道示例";高度为5,宽度比为1:1.2
Set Text = ThisDrawing.ModelSpace.AddText("明经通道示例", Txt, 5)
End Sub 对不起!在发贴子时,汉字未能正常显示,再发一次
 楼主| 发表于 2004-6-12 20:35:00 | 显示全部楼层
谢谢兄弟,搞定!!!!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-28 06:34 , Processed in 0.150212 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表