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

sw version indicators
hello all, i was woundering if there was some kind of indicator or way to identify what version a sw file was lasts save in. we work on quite a few different projects and some of our customers are not up to date with the latest version. we have had instiances where a file was opende in a newer version which made it unopenable to our customer.
is there some type of indicator within the sw file to look for or anything that will allow us to verify the version of the file.
any info will be appericiated thanks
see the api help on "modeldoc2::versionhistory"
paste this in as a new macro and it will tell you the most recent saved version:
option explicit
dim swapp as sldworks.sldworks
dim swdoc as modeldoc2
dim version as variant
dim currentversion as string
dim i as long
sub main()
set swapp = application.sldworks
set swdoc = swapp.activedoc
version = swdoc.versionhistory
currentversion = version(ubound(version))
msgbox "most recent save as: " & getversion(currentversion) & chr(13) & _
"minor release: " & right(currentversion, len(currentversion) - (instr(1, currentversion, "[") - 1))
end sub
function getversion(byval version as string) as string
dim versioncode as string
versioncode = left(version, (instr(1, version, "[") - 1))
if versioncode = "44" then
getversion = "solidworks 95"
elseif versioncode = "243" then
getversion = "solidworks 96"
elseif versioncode = "483" then
getversion = "solidworks 97"
elseif versioncode = "629" then
getversion = "solidworks 97plus"
elseif versioncode = "822" then
getversion = "solidworks 98"
elseif versioncode = "1008" then
getversion = "solidworks 98plus"
elseif versioncode = "1137" then
getversion = "solidworks 99"
elseif versioncode = "1500" then
getversion = "solidworks 2000"
elseif versioncode = "1750" then
getversion = "solidworks 2001"
elseif versioncode = "1950" then
getversion = "solidworks 2001plus"
elseif versioncode = "2200" then
getversion = "solidworks 2003"
elseif versioncode = "2500" then
getversion = "solidworks 2004"
elseif versioncode = "2800" then
getversion = "solidworks 2005"
elseif versioncode = "3100" then
getversion = "solidworks 2006"
elseif versioncode = "3400" then
getversion = "solidworks 2007"
elseif versioncode = "3800" then
getversion = "solidworks 2008"
else
msgbox "unrecognized major version.", vbcritical
end if
end function
another option is
retval = sldworks.versionhistory ( filename )
input:
(bstr) filename
full path name of the model for which to get the version history
return:
(variant) retval
variant of type safearray of strings of the version history
the advantage of this method is that you do not have to open the file in solidworks so you can find what future version the file is in.
wayne matus
texas engineering systems
thanks to all
quick
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
 


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

高级搜索
显示模式

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

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

相似的主题
主题 主题发起者 论坛 回复 最后发表
Unicode、UCS、UTF、BMP、BOM huangyhg vc编程 2 2007-01-22 05:43 PM


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


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