|
rebiuld part, assembly or drawing
hi,
can someone help me? i need code to rebuild. thanks in advance!!
solidworks 2006,2007,2008,2009 (office premium.)
core 2 duo e6850 @ 3.00 mhz
window xp pro sp3 32 bit
ati firegl v7350
ben,
did you look in the api help - see example below.
'--------------------
sub main()
dim swapp as object
dim part as object
dim boolstatus as boolean
dim toponly as boolean
set swapp = createobject("sldworks.application")
set part = swapp.activedoc
if part.editrebuild3() then
msgbox "rebuild successful"
else
msgbox "this model has rebuild errors"
end if
toponly = true
if part.forcerebuild3(toponly) then
msgbox "forced rebuild successful"
else
msgbox "this model has rebuild errors"
end if
end sub
jorn bjarning
cswp
cad & plm consultant
sw2008 sp5 / sw2009 sp2
thanks jorn i will give that a try
solidworks 2006,2007,2008,2009 (office premium.)
core 2 duo e6850 @ 3.00 mhz
window xp pro sp3 32 bit
ati firegl v7350
ben,
i forgot to ask you - what exactly do you want to do?
jorn bjarning
cswp
cad & plm consultant
sw2008 sp5 / sw2009 sp2
i have a macro where i was hideing or not hideing the bend lines of my sheetmetal part and it did not show or hide unless it was rebuilt
solidworks 2006,2007,2008,2009 (office premium.)
core 2 duo e6850 @ 3.00 mhz
window xp pro sp3 32 bit
ati firegl v7350
quick |
|