CAT VBA - Propagate Directory
CAT VBA - Propagate Directory
(OP)
Hi everbody,
does anyone know how to write a code with the opportunity to Save As... Propagate Directory.
The macro recorder is not able to record something to this option!
I´ve got some Products and want to save them with all Parts inside.
I hope someone can help me with that problem.
Thanks!
does anyone know how to write a code with the opportunity to Save As... Propagate Directory.
The macro recorder is not able to record something to this option!
I´ve got some Products and want to save them with all Parts inside.
I hope someone can help me with that problem.
Thanks!





RE: CAT VBA - Propagate Directory
I would try to use SendToFolder method...copy-paste in a CATScript:
Sub CATMain()
Dim File
File=CATIA.FileSelectionBox("Filename", "*.catproduct", CATFileSelectionModeSave)
CATIA.ActiveDocument.SaveAs File
CATIA.DisplayFileAlerts = True
Path = CATIA.ActiveDocument.Path
Name = CATIA.ActiveDocument.Name
initial = Path & "\" & Name
Set Folder = CATIA.FileSystem.CreateFolder("oTemp")
oFolder = Path & "\oTemp"
Set Send = CATIA.CreateSendTo()
Send.SetInitialFile (initial)
Send.SetDirectoryFile (oFolder)
Send.Run
End Sub
Regards
Fernando
https://picasaweb.google.com/102257836106335725208