几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量  


返回   几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 » 仿射空间:CAX软件开发(三)二次开发与程序设计 » CAD二次开发 » SolidWorks二次开发
用户名
密码
注册 帮助 会员 日历 银行 搜索 今日新帖 标记论坛为已读


 
 
主题工具 搜索本主题 显示模式
旧 2009-04-12, 10:19 PM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】saving assembly selection se

saving assembly selection set
hi
could someone give me an example or pointers for working through selected components using vb6 api. i'm having difficulty after the first run through my code as the selection is lost. (i want to work on each selected component in turn)
i grab the count with swselmgr.getselectedobjectcount then get the first selected part with swselmgr.getselectedobjectscomponent2(i) but now i've lost the selection and so cannot just increment (i) anymore.
what is the best method for saving this selection set so i can come back to it ?
thanks
rich
the first thing to do try would be to avoid using code that changes the current selection set. however, that's obviously not possible in every case, and i'm pretty sure not possible in your case since you're posting about it. i think the best thing to do would be to put everything that's currently selected into collections of objects. here's a function i wrote a while back to do just that. it's part of a macro to enable saving and restoring of selection sets. this code was on a form, so a good portion of it can be gotten rid of. if you want to see the entire macro let me know and i can try to post it.
one thing to note - before you try to use any of the objects in the collections, check their issafe property since it's possible that something you did made a face disappear.
note that this code saves faces, edges, vertices, etc. if you really just want all the components that are selected, use getselectedobjectscomponent as you were doing, but put the components into a collection before processing, then iterate through the collection.
sub savesels(badd as boolean)
dim i as long
if not badd then
me.labfacecount.caption = "0"
me.labmissingfaces.caption = "0"
me.labedgecount.caption = "0"
me.labmissingedges.caption = "0"
me.labvertcount.caption = "0"
me.labmissingverts.caption = "0"
me.labplanescount.caption = "0"
me.labmissingplanes.caption = "0"
set myfacecoll = new collection
set myedgecoll = new collection
set myvertcoll = new collection
set myplanecoll = new collection
end if
for i = 1 to swselmgr.getselectedobjectcount
if swselmgr.getselectedobjecttype3(i, -1) = swselfaces then
set myent = swselmgr.getselectedobject6(i, -1)
myfacecoll.add myent.getsafeentity
me.labfacecount.caption = me.labfacecount.caption + 1
elseif swselmgr.getselectedobjecttype3(i, -1) = swseledges then
set myent = swselmgr.getselectedobject6(i, -1)
myedgecoll.add myent.getsafeentity
me.labedgecount.caption = me.labedgecount.caption + 1
elseif swselmgr.getselectedobjecttype3(i, -1) = swselvertices then
set myent = swselmgr.getselectedobject6(i, -1)
myvertcoll.add myent.getsafeentity
me.labvertcount.caption = me.labvertcount.caption + 1
elseif swselmgr.getselectedobjecttype3(i, -1) = swseldatumplanes then
set myfeat = swselmgr.getselectedobject6(i, -1)
myplanecoll.add myfeat
me.labplanescount.caption = me.labplanescount.caption + 1
end if
next i
end sub
i'll get you eh steve, if it's the last thing i dooooo!
sub main()
dim swapp as sldworks.sldworks
dim part as sldworks.modeldoc2
dim selmgr as sldworks.selectionmgr
dim swcomponent() as sldworks.component2
dim i as integer
dim j as integer
set swapp = getobject(, "sldworks.application")
set part = swapp.activedoc
set selmgr = part.selectionmanager
i = selmgr.getselectedobjectcount
redim swcomponent(i)
for j = 0 to i
set swcomponent(j) = selmgr.getselectedobjectscomponent3(j, -1)
next j
part.clearselection
for j = 0 to i
if not swcomponent(j) is nothing then
swcomponent(j).select true
end if
next j
end sub
answer thanks josh and ivana, that's exactly what i needed. not sure why i didn't think of this.
rich
quick
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
 


主题工具 搜索本主题
搜索本主题:

高级搜索
显示模式

发帖规则
不可以发表新主题
不可以回复主题
不可以上传附件
不可以编辑您的帖子

vB 代码开启
[IMG]代码开启
HTML代码关闭

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】not to update assembly yang686526 SolidWorks二次开发 0 2009-04-12 09:56 PM
【转帖】inserting and mating parts in an assembly yang686526 SolidWorks二次开发 0 2009-04-12 09:28 PM
【转帖】selection boxes yang686526 SolidWorks二次开发 0 2009-04-12 07:34 PM
【转帖】inserting and mating parts in an assembly yang686526 SolidWorks二次开发 0 2009-04-12 06:43 PM


所有的时间均为北京时间。 现在的时间是 01:48 PM.


于2004年创办,几何尺寸与公差论坛"致力于产品几何量公差标准GD&T | GPS研究/CAD设计/CAM加工/CMM测量"。免责声明:论坛严禁发布色情反动言论及有关违反国家法律法规内容!情节严重者提供其IP,并配合相关部门进行严厉查处,若內容有涉及侵权,请立即联系我们QQ:44671734。注:此论坛须管理员验证方可发帖。
沪ICP备06057009号-2
更多