明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1817|回复: 1

[求助]请高手过目,看下鄙人的代码为什么不能实现画多段线的功能

[复制链接]
发表于 2005-11-9 23:00:00 | 显示全部楼层 |阅读模式
Private Sub CommandButton1_Click()
Dim user1 As AcadPolyline
Dim userp As AcadPoint
On Error Resume Next
    CommonDialog1.ShowOpen
    Open CommonDialog1.FileName For Input As #1
     Do While Not EOF(1)
        Line Input #1, inputdata
       a = inputdata
       ' a = Split(inputdata, ",")
        Set userp = ThisDrawing.ModelSpace.AddPoint(a)
        Set user1 = ThisDrawing.ModelSpace.AddPolyline(a)
     Loop
     Close #1
     Me.Hide
     ThisDrawing.Application.ZoomExtents
end sub
请问为什么不能实现将文本文件里的坐标通过Polyline画到当前文档中去呢!
请高手一定指教,不胜感激!
以下是我文本文件里的数据!
611366,3537816
611344,3537965
611031,3537822
611084,3537930
611124,3538024
611047,3537989
611019,3537909
发表于 2005-11-10 08:22:00 | 显示全部楼层

1,若多段线是二维的建议使用AddLightWeightPolyline

2,使用AddLightWeightPolyline的输入参数是数组,在你的例子里应先

把所有点坐标读入,放到一个一维数组里(x1 y1 x2 y2 .....)

您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-27 08:45 , Processed in 0.176530 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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