乐筑天下

搜索
欢迎各位开发者和用户入驻本平台 尊重版权,从我做起,拒绝盗版,拒绝倒卖 签到、发布资源、邀请好友注册,可以获得银币 请注意保管好自己的密码,避免账户资金被盗
查看: 143|回复: 1

[编程交流] Extract x,y,z point info

[复制链接]

4

主题

11

帖子

7

银币

初来乍到

Rank: 1

铜币
20
发表于 2022-7-6 22:39:09 | 显示全部楼层 |阅读模式
I made this little program in vba a while back to extract points and write an output file. I would like to start writing this stuff in vb express 2010, but i am not sure how to extract the x,y,z info from each point when in the .net world. I have searched the threads, but i don't see the answer.
 
  1. Private Sub CommandButton1_Click()UserForm1.Hide   Dim sset As AcadSelectionSet           Dim OpenFlag As Boolean   Set sset = ThisDrawing.SelectionSets.Add("SS1")   sset.SelectOnScreen                     Dim ent As AcadObject                      Dim x As Double   Dim y As Double   Dim z As Double   Dim coords As Variant   EntCnt = 0   Open "c:\temp\point_xyz.csv" For Output As #1   For Each ent In sset      'Loop through the SelectionSet collection       If ent.ObjectName = "AcDbPoint" Then           coords = ent.Coordinates           x = coords(0)           y = coords(1)           z = coords(2)           Print #1, x, ",", y, ",", z       End If   Next ent   Close #1   sset.Delete   UserForm1.Show   EndEnd Sub
回复

使用道具 举报

4

主题

11

帖子

7

银币

初来乍到

Rank: 1

铜币
20
发表于 2022-7-7 00:34:51 | 显示全部楼层
I just realized the express edition of vb 2010 has an Object Browser.... that should help me answer my question.
回复

使用道具 举报

发表回复

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

本版积分规则

  • 微信公众平台

  • 扫描访问手机版

  • 点击图片下载手机App

QQ|关于我们|小黑屋|乐筑天下 繁体中文

GMT+8, 2025-1-31 20:48 , Processed in 0.147666 second(s), 56 queries .

© 2020-2025 乐筑天下

联系客服 关注微信 帮助中心 下载APP 返回顶部 返回列表