明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1716|回复: 2

我编的一个小程序

[复制链接]
发表于 2003-7-29 12:43:00 | 显示全部楼层 |阅读模式
(defun c:d0301()
(SETQ thbl (GETVAR "dimscale"))
(COMMAND "REDRAW")
(setvar "cmdecho" 0)
(setvar "blipmode" 0)
(setq part "c:\\dzdwg\\d0301")
(setq tt (getpoint "Insertion Point:"))
(command "insert" part tt thbl thbl)
(command "explode" tt "")
(command "redraw")
(setvar "cmdecho" 1)
(setvar "blipmode" 1)
)
  以上是我编的一个小程序,目的用于插入一个符号(即C:\DZDWG\D0301),但在CAD下
运行后,总是出现"函数被取消"这一提示,但命令还能完成运行,插入符号也能完成,我想请教
各位高手的是:上面的程序存在什么问题,怎样才能消除"函数被取消"这一提示。
    谢谢。
发表于 2003-7-29 13:16:00 | 显示全部楼层
(defun c:d0301()
(setq thbl (getvar "dimscale"))
(command "redraw")
(setvar "cmdecho" 0)
(setvar "blipmode" 0)
(setq part "c:\\dzdwg\\d0301")
(setq tt (getpoint "insertion point:"))
(command "insert" part tt thbl thbl "")
(command "explode" tt "")
(command "redraw")
(setvar "cmdecho" 1)
(setvar "blipmode" 1)
)
发表于 2003-7-29 13:20:00 | 显示全部楼层
关键在你的insert命令中使用不当!
将 insert    ->  -insert          而且,你的insert 中的相应次数也不对,  应该是:
Command: -insert
Enter block name or [?] <d0301>:
Specify insertion point or [Scale/X/Y/Z/Rotate/PScale/PX/PY/PZ/PRotate]:
Enter X scale factor, specify opposite corner, or [Corner/XYZ] <1>:
Enter Y scale factor <use X scale factor>:
Specify rotation angle <0>:

共5次!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 20:47 , Processed in 0.165271 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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