明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1529|回复: 5

[VBA]请问:选择集过滤器为何不可用

[复制链接]
发表于 2004-9-9 10:27:00 | 显示全部楼层 |阅读模式
Dim SsetObj As AcadSelectionSet
Dim filterType(0) As Integer, FilterDate As Variant
filterType(0) = 0
FilterDate = "Line"
ThisDrawing.SelectionSets("AA").Delete
Set SsetObj = ThisDrawing.SelectionSets.Add("AA")
SsetObj. filterType, FilterDate
显示的错误为filterType, FilterDate参数在SelectOnScreen不可用
请问有什么方法可以解决?
如果用句柄遍历所有对象怎么样去做,请明示.谢谢
发表于 2004-9-9 10:56:00 | 显示全部楼层
1、FilterDate = "Line"
? dim FilterDate(0) As Variant FilterDate(0) = "Line"
2、HandleToObject方法
 楼主| 发表于 2004-9-9 19:33:00 | 显示全部楼层
不行啊


错误为:找不到主健
发表于 2004-9-9 19:39:00 | 显示全部楼层
前面加上on error resume next
发表于 2004-9-10 08:48:00 | 显示全部楼层
Sub SSet()
On Error Resume Next
Dim SsetObj As AcadSelectionSet
Dim filterType(0) As Integer, FilterDate(0) As Variant
filterType(0) = 0
FilterDate(0) = "Line"
ThisDrawing.SelectionSets("AA").Delete
Set SsetObj = ThisDrawing.SelectionSets.Add("AA")
SsetObj.SelectOnScreen filterType, FilterDate End Sub
 楼主| 发表于 2004-9-10 10:30:00 | 显示全部楼层
谢谢各位的帮助


我的问题已经得到解决


我会努力学的更好
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-28 01:35 , Processed in 0.187523 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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