明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1905|回复: 3

cad数据导入excel中遇到的问题

[复制链接]
发表于 2012-10-14 16:17:14 | 显示全部楼层 |阅读模式
Sub a()
    '连接EXCEL——标准代码****************************
       Dim xlApp As Excel.Application
       Dim xlbook As Excel.Workbook
       Dim xlSheet As Excel.Worksheet
       On Error Resume Next
       Set xlApp = GetObject(, "excel.application")
       If Err <> 0 Then
         Err.Clear
         Set xlApp = CreateObject("excel.application")
         If Err <> 0 Then
           MsgBox "无法启动excel"
           Exit Sub
         End If
       End If
       If ActiveWorkbook.Sheets.Count = 0 Then xlbook = xlApp.Workbooks.Add
       Set xlbook = xlApp.ActiveWorkbook
       Set xlSheet = xlbook.ActiveSheet
        xlApp.Visible = True
        If Err <> 0 Then Err.Clear
    '标准代码结束*****************************************
Dim retCoord() As Double
Dim a As AcadLWPolyline
Dim i As Integer
Dim j As Integer
Dim l As Integer
i = 0
ThisDrawing.Utility.GetEntity a, "Select an object"
    retCoord() = a.Coordinates
On Error GoTo e
Do While CBool(retCoord(i)) <> False
j = ActiveCell.Row  '这个无法返回激活单元格地址
l = ActiveCell.Column
xlSheet.Cells(j + i / 2, l).Value = retCoord(i)   
xlSheet.Cells(j + i / 2, l + 1).Value = retCoord(i + 1)
i = i + 2
Loop
e: Exit Sub
j = 0
l = 0
End Sub
以上是一个将cad中多段线点坐标导入excel中去的代码,在cad中运行该宏,电脑提示“用户定义类型未定义”(红色部分),这是怎么回事??哪位大侠能告诉我??
发表于 2012-10-14 20:57:42 | 显示全部楼层
找开vbe编辑器,工具---引用----microsoft excel 11.0 libiray
 楼主| 发表于 2012-10-15 21:08:45 | 显示全部楼层
sscylh 发表于 2012-10-14 20:57
找开vbe编辑器,工具---引用----microsoft excel 11.0 libiray

好的,谢谢!
发表于 2012-10-21 13:08:20 | 显示全部楼层
好眼熟,呵呵
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 14:58 , Processed in 0.177216 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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