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

save as *.pdf options
hello,
i'm preparing an application for saving a pdf file from a drawing.
i've written this code and works:
retval = modelo.saveas4(nuevonombre, 0, swsaveasoptions_silent, 0, 0)
the problem is i have more than 1 sheet and always saves all the sheets in 1 pdf file.
does anybody know how to save only the active sheet?
thanks.
mikel,
there was another thread on exactly the same subject only a few weeks ago. try to search for it.
jorn bjarning
cswp
cad & plm consultant
sw2008 sp5 / sw2009 sp2
jorn,
could you tell me where can i find the options for configuring the "saveas4/3..."
code? i mean, the options between parenthesis:
retval = modelo.saveas4(nuevonombre, 0, swsaveasoptions_silent, 0, 0)
i can't find it into the sw api help.
thanks a lot.
swsaveasversion_e
specifies in which version of a particular format the document should be saved.
swsaveascurrentversion - this is the typical save behavior.
swsaveasformatproe
swsaveasstandarddrawing
swsaveasdetacheddrawing
swsaveasoptions_e
swsaveasoptions_silent
swsaveasoptions_copy
swsaveasoptions_savereferenced //supports parts, assemblies, and drawings. this setting indicates to save all components (sub-assemblies and parts) in both assemblies and drawings. if a part has an external reference, then this setting indicates to save the external reference.
swsaveasoptions_avoidrebuildonsave
swsaveasoptions_updateinactiveviews //not a valid option for partdoc::savetofile2. this setting is only applicable for a drawing that has one or more sheets. this setting updates the views on inactive sheets.
swsaveasoptions_overridesaveemodel //saves edrawings-related information into a section of the file being saved. specifying this setting overrides the tools, options, system options, general, save edrawings data in solidworks document setting. not a valid option for partdoc::savetofile2.
swsaveasoptions_saveemodeldata //obsolete
swsaveasoptions_detacheddrawing //not a valid option for partdoc::savetofile2
note: these options only apply to saving to native solidworks file formats. for example, to export a solidworks file to a vrml file format, use sldworks::getuserpreferencetoggle and sldworks::setuserpreferencetoggle with swexportvrmlallcomponentsinsinglefile
mikel,
saveas4 is obsolete. you should use modeldocextension::saveas instead. in the help you have links explaining the options.
jorn bjarning
cswp
cad & plm consultant
sw2008 sp5 / sw2009 sp2
luke,
i found one of your topics and there appears you solve the problem with:
retval = swexportdata.setsheets(swexportdata_exportallsheets, 1)
but how did you configured for exporting only the active sheet?
thanks a lot,
mikel arrasate
here is my solution that i use on a daily basis. it creates a pdf of a file and places it into a specific network folder based upon some checkboxes. it then looks at the sheet name and exports a pdf of only the sheet requested.
code:
dim swprog as sldworks.sldworks
dim swmodel as sldworks.modeldoc2
dim swmodeldocext as sldworks.modeldocextension
dim swexportpdfdata as sldworks.exportpdfdata
dim selmgr as object
dim boolstatus as boolean
dim longstatus as long, longwarnings as long
dim feature as object
dim filename as string
dim filename2 as string
dim sprintdir as string
dim strsheetname as string
dim varsheetname as variant
dim spdirlength as integer
private sub cmddoit_click()
'on error goto err
if chksprint = true then
call sprint
end if
if chktprint = true then
call tprint
end if
if chkiprint = true then
call iprint
end if
frmprintpdf.hide
unload frmprintpdf
exit sub
err:
resume
end sub
private sub sprint()
set swprog = application.sldworks
swprog.visible = true
set part = swprog.activedoc
set selmgr = part.selectionmanager
set swmodeldocext = part.extension
set swexportpdfdata = swprog.getexportfiledata(1)
strsheetname = "s-print"
sprintdir = "\\lexp-jasper\tech\eng\cad_files\solidworks\s-prints\"
spdirlength = len(sprintdir)
filename = part.getpathname
filename = left(filename, len(filename) - 6)
filename = right(filename, len(filename) - spdirlength)
filename2 = "\\lexp-jasper\tech\eng\master\sales_cd\s-prints\" & filename & "pdf"
if chkmold = true then
varmoldnum = txtmold.value
if dir("\\lexp-jasper\tech\eng\cad_files\part_prints\" & varmoldnum & "\", vbdirectory) = "" then
mkdir "\\lexp-jasper\tech\eng\cad_files\part_prints\" & varmoldnum & "\"
mkdir "\\lexp-jasper\tech\eng\cad_files\part_prints\" & varmoldnum & "\obsolete\"
end if
filename = "\\lexp-jasper\tech\eng\cad_files\part_prints\" & varmoldnum & "\" & filename & "pdf"
else
filename = "\\lexp-jasper\tech\eng\cad_files\part_prints\s_prints\" & filename & "pdf"
end if
varsheetname = strsheetname
if swexportpdfdata is nothing then msgbox "nothing"
boolstatus = swexportpdfdata.setsheets(swexportdata_exportspecifiedsheets, varsheetname)
boolstatus = swmodeldocext.saveas(filename, 0, 0, swexportpdfdata, longstatus, longwarnings)
boolstatus = swmodeldocext.saveas(filename2, 0, 0, swexportpdfdata, longstatus, longwarnings)
end sub
dell precision | m65
quadro fx350
2g ram
windows xp
sw2009 - wish i could go back to sw2008
retval = swexportdata.setsheets(swexportdata_exportcurrentsheet, 1)
answer thanks a lot khris, i'll try with this code.
quick
yang686526离线中   回复时引用此帖
GDT自动化论坛(仅游客可见)
回复


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

高级搜索
显示模式

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

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

相似的主题
主题 主题发起者 论坛 回复 最后发表
【转帖】propertymanager page problem yang686526 SolidWorks二次开发 0 2009-04-12 07:20 PM


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


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