明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1324|回复: 6

高手请进!

[复制链接]
发表于 2005-6-10 15:44:00 | 显示全部楼层 |阅读模式
帮忙看看 (defun c:bgj (/e i n d inf t1 txt tx ty ta tb t2 inf1)
(princ "\n修改管径----c:bgj\n")
(setq e (ssget '((0 . "TEXT"))))
(setq n (sslength e)
i 0
)
(setq d (getstring "\n输入管径:"))
(while (< i n)
(setq inf (entget (ssname e i)))
(setq t1 (assoc 1 inf))
(setq txt (cdr t1))
(setq tx (substr txt 1 1))
(setq ty (substr txt 2 1))
(if (and (= tx "D") (= ty "="))
(progn
(setq ta (strcat "D=" d))
(setq tb (substr txt 6))
(setq t2 (cons 1 (strcat ta tb)))
(setq inf1 (subst t2 t1 inf))
(setq inf1 (cons (cons 62 2) inf1))
(entmod inf1)
)
)
(setq i (1+ i))
)
(command "change" e "" "p" "color" 1 "") (princ)
)
为何在运行的时候提示参数太少呢?
发表于 2005-6-10 15:53:00 | 显示全部楼层
图面内必须要有text创建的文本,你那有吗?
 楼主| 发表于 2005-6-10 15:56:00 | 显示全部楼层
问题的中心并不在此,图面肯定是有text创建的文本,我个人认为是不是定义局部变量时出现漏项,可仔细检查还是未发现
发表于 2005-6-10 16:37:00 | 显示全部楼层
(defun c:bgj (/e i n d inf t1 txt tx ty ta tb t2 inf1)
-> (defun c:bgj (/ e i n d inf t1 txt tx ty ta tb t2 inf1)
 楼主| 发表于 2005-6-10 16:59:00 | 显示全部楼层
谢谢龙兄,可以啦!
发表于 2005-6-13 16:49:00 | 显示全部楼层
呵呵


谢谢


发表于 2005-6-14 23:49:00 | 显示全部楼层
帮助中就已明确指出,“/”和局部变量间须有空格。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-17 13:41 , Processed in 0.185657 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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