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

a simple macro help.
i want to assign custom properties to part file or assembly file base on the file name structure.
the file name is like 1234567890baseplate.sldprt, which is 10 digit number plus part description.
so how can i assign the first 10 digit number to "partno" custom properties and assign the base plate ( the rest of the strings) as " description" custom properties.
thanks...
mechanical design engineer (cswp, cswa, cswp-core | cdes | smtl | surf)
hi shaodun,
what you can do is strip the extension(always 7 characters) of the file name and then get the first 10 characters to use for "partno" and the rest for description".
code wise this can be done as seen below:
option explicit
dim swapp as sldworks.sldworks
dim swmodel as sldworks.modeldoc2
dim custpropmgr as sldworks.custompropertymanager
dim title as string, name as string, descr as string
dim retval as long
sub main()
set swapp = application.sldworks
set swmodel = swapp.activedoc
title = swmodel.gettitle
title = left(title, (len(title) - 7))
name = left(title, 10)
descr = right(title, len(title) - 10)
set custpropmgr = swmodel.extension.custompropertymanager("")
'if the custom properties do not exist if they do exist yu need to use custompropertymanager::set instead
retval = custpropmgr.add2("partno", swcustominfotype_e.swcustominfotext, name)
retval = custpropmgr.add2("description", swcustominfotype_e.swcustominfotext, descr)
end sub
in this world i am nobody...
and nobody is perfect !!!
---------
solidworks office 2008 sp4.0
dell precision pws390
nvidia quadro fx 3450/4000 sdi
answer title will not always be the actual filename can be totally different, blank, with a * if not saved, or custom.
option explicit
dim swapp as sldworks.sldworks
dim swmodel as modeldoc2
dim cpm as custompropertymanager
sub main()
set swapp = application.sldworks
set swmodel = swapp.activedoc
set cpm = swmodel.extension.custompropertymanager("")
dim path as string, filename as string, partno as string, desc as string
path = swmodel.getpathname
filename = mid$(path, instrrev(path, "\") + 1) ' with extension
filename = left$(filename, instrrev(filename, ".") - 1) ' remove extension
partno = left(filename, 10)
desc = right(filename, len(filename) - 10)
cpm.delete "partno"
cpm.delete "description"
cpm.add2 "partno", swcustominfotext, partno
cpm.add2 "description", swcustominfotext, desc
end sub
originally posted by: luke malpass
title will not always be the actual filename can be totally different, blank, with a * if not saved, or custom.
end sub
perfect !!!
many thanks!!!
mechanical design engineer (cswp, cswa, cswp-core | cdes | smtl | surf)
quick
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
【转帖】copy an existent sketch into a macro yang686526 SolidWorks二次开发 0 2009-04-12 08:31 PM


所有的时间均为北京时间。 现在的时间是 11:51 AM.


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