几何尺寸与公差论坛------致力于产品几何量公差标准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-13, 09:59 AM   #1
yang686526
高级会员
 
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
yang686526 向着好的方向发展
默认 【转帖】count bends - macro

count bends - macro
is there a way that i can capture the number of bends in a sheetmetal part and save them to a configuration specific property?
thanks for any assistance you can provide.
try this. the main code comes from a sample in the api help. change the name of the property in the last line as desired.
'traverse subfeatures example
'this example shows how to traverse the sub-features
'of each feature in a part .
dim swapp as sldworks.sldworks
dim part as sldworks.modeldoc2
sub main()
set swapp = createobject("sldworks.application")
set part = swapp.activedoc
' get the 1st feature in part
dim feature as sldworks.feature
set feature = part.firstfeature
dim featurecount as integer
featurecount = 0
' while we have a valid feature
while not feature is nothing
' get the name of the feature
dim featurename as string
dim featuretype as string
dim subfeat as sldworks.feature
set feature = feature.getnextfeature
featuretype = feature.gettypename2
if featuretype = "flatpattern" then
set subfeat = feature.getfirstsubfeature
' while we have a valid sub-feature
while not subfeat is nothing
' get the type of the sub-feature
if subfeat.gettypename2 = "uibend" then
featurecount = featurecount + 1
end if
set subfeat = subfeat.getnextsubfeature
' continue until the last sub-feature is done
wend
' get the next feature
set feature = feature.getnextfeature()
' continue until the last feature is done
end if
wend
msgbox featurecount & " bends in this part"
'add a custom property
part.addcustominfo3 "", "number of bends", swcustominfotext, cstr(featurecount)
end sub
mike spens
"automating solidworks using macros"
leap frog leap pad x64
thanks mike! i am not sure how i didn't see that in the api samples, but it is exactly what i needed.
denten
denten,
could you pleas upload the macro file.
mohamed abdel moniem | mechanical engineer
cswp, cswa, cswp core, cswp-smtl
solidworks 2009 sp3.0
vista x64 sp1.0
intel q6600, 8gb ram
ati hd 4850
3dconnexions spacenavigator
hi mohamed,
i just used the code that mike posted above. all i had to change was change "featuretype = feature.gettypename2" to "featuretype = feature.gettypename"
and then it works 100% for me.
denten,
actually i've never worked with api or created a macro file, i only use them
so if you don't mind. pleas upload the macro file
mohamed abdel moniem | mechanical engineer
cswp, cswa, cswp core, cswp-smtl
solidworks 2009 sp3.0
vista x64 sp1.0
intel q6600, 8gb ram
ati hd 4850
3dconnexions spacenavigator
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
 


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

高级搜索
显示模式

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

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

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】macro for inserting and mating a new part in an assembly yang686526 SolidWorks二次开发 0 2009-04-12 09:38 PM
【转帖】how do i slow a macro down yang686526 SolidWorks二次开发 0 2009-04-12 09:10 PM
【转帖】copy an existent sketch into a macro yang686526 SolidWorks二次开发 0 2009-04-12 08:31 PM
【转帖】batch w user input macro yang686526 SolidWorks二次开发 0 2009-04-12 08:17 PM


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


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