明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2368|回复: 2

谁来帮帮我:未找到主键!!!!!!!!

[复制链接]
发表于 2011-1-15 22:56:38 | 显示全部楼层 |阅读模式
Sub aa()
Dim a As Object
Dim b As Object
Dim c As Object
Dim sset As AcadSelectionSet
Dim filterType(0) As Integer, filterData(0) As Variant
Set a = CreateObject("excel.application")
Set b = a.Workbooks.Add
Set c = b.Worksheets(1)
If Not IsNull(ThisDrawing.SelectionSets.Item("ToExcel")) Then
   Set sset = ThisDrawing.SelectionSets.Item("ToExcel")
   sset.Delete
End If
Set sset = ThisDrawing.SelectionSets.Add("ToExcel")
filterType(0) = 0
filterData(0) = "line,circle,point"
sset.SelectOnScreen filterType, filterData
c.range("A1") = "ObjectCount" '写入标题
c.range("B1") = sset.Count       '写入数据
Dim Obj As AcadEntity, i As Long, varCP As Variant
   i = 2
   For Each Obj In sset
  Select Case Obj.ObjectName
    Case "AcDbPoint"
    dd = Obj.Coordinates
     c.range(("A" & i)) = i - 1 '写入对象名
    c.range(("B" & i)) = dd(0)
    c.range(("C" & i)) = dd(1)
    c.range(("D" & i)) = dd(2)
      End Select
i = i + 1
   Next
a.Visible = True
End Sub
上次问过有位仁兄说红色部分缺少,所以加上,但是用的时候还是提醒未找到主键,有的时候却可以正常运行,为什么?
发表于 2011-1-16 12:30:47 | 显示全部楼层
on error resume next
ThisDrawing.SelectionSets("ToExcel").Delete
Set sset = ThisDrawing.SelectionSets.Add("ToExcel")
 楼主| 发表于 2011-1-16 13:29:53 | 显示全部楼层
回复 雪山飞狐_lzh 的帖子

还有为什么有的时候能执行,有的时候执行不了,还有主键是什么意思,可以通俗的说下不|?》?先谢过了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 21:23 , Processed in 0.231968 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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