明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1302|回复: 4

在VBA里如何实现快速命令?

[复制链接]
发表于 2008-4-23 12:05:00 | 显示全部楼层 |阅读模式

如题,在LISP里实现起来很容易,用“c:function name”就能做快速命令,在VBA里要如何实现?

在帮助里没找到,但是发现用VALX类可以实现执行LISP语句,在LISP里再嵌套VBA函数这样是否可行?

 楼主| 发表于 2008-4-24 18:46:00 | 显示全部楼层
哪位 大大头注一下。。。
发表于 2008-4-25 00:29:00 | 显示全部楼层

Private Sub addcommand()
ThisDrawing.SendCommand "(defun C:AZJ() (command " & Chr(34) & "-vbarun" & Chr(34) & Chr(32) & Chr(34) & "azjmjsj" & Chr(34) & "))" & Chr(32)
ThisDrawing.SendCommand "(defun C:ABC() (command " & Chr(34) & "-vbarun" & Chr(34) & Chr(32) & Chr(34) & "abcde" & Chr(34) & "))" & Chr(32)
End Sub

Private Sub AcadDocument_BeginCommand(ByVal CommandName As String)
If StrComp(Left$(CommandName, 3), "VBA", 1) <> 0 And UCase$(CommandName) <> "APPLOAD" Then Exit Sub
addcommand
End Sub

Private Sub AcadDocument_EndCommand(ByVal CommandName As String)
If StrComp(Left$(CommandName, 3), "VBA", 1) <> 0 And UCase$(CommandName) <> "APPLOAD" Then Exit Sub
addcommand
End Sub

****************************************************************************
西北凡人: http://www.abofanyi.com/blog

 楼主| 发表于 2008-4-29 20:34:00 | 显示全部楼层
感谢楼上的提供!我试试先!
发表于 2008-4-29 21:43:00 | 显示全部楼层
没有看到置顶的贴子吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 08:52 , Processed in 0.160266 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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