明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2171|回复: 3

[求助]VBA如何在本图遍寻找字符串且代替

[复制链接]
发表于 2005-10-5 16:49:00 | 显示全部楼层 |阅读模式

请给个例子,我是新手。谢谢

发表于 2005-10-5 17:20:00 | 显示全部楼层
我在源码共享里发了一个文字多重替换程序,你可以找找看
 楼主| 发表于 2005-10-6 07:43:00 | 显示全部楼层

我的程序,为何不好用

本帖最后由 作者 于 2005-10-6 8:09:15 编辑

On Error Resume Next
    Dim n As Integer
    Dim textold As String, textnew As String
    Dim Enttype As Variant
    Dim Endata As Variant
    textold = "MetalclipsLONG"
    textnew = "sss"
    On Error Resume Next
    For n = 0 To ThisDrawing.ModelSpace.Count - 1
       'If ThisDrawing.ModelSpace(n).EntityType = acText Then
         ThisDrawing.ModelSpace(n).GetXData "", 0, Enttype
       If Enttype = "text" Then
          ThisDrawing.ModelSpace(n).GetXData "", 1, Endata
           If Endata = textold Then
          
          ThisDrawing.ModelSpace(n).SetXData 1, textnew
          End If
       End If
    Next
    On Error Resume Next

发表于 2005-10-7 08:28:00 | 显示全部楼层

如果要替换的文字在一个字符串中就不能用了,我建议你遍历所有字符,可以解决

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 10:42 , Processed in 0.154145 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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