Hi ferdo
I'm working with CATIA V5 Team Center Integration. So far we don't have any plugin for CATIA Integration in Team Center to export and save PDF and DXF automaticly. That's why I decided to create scripts that's at least export PDF and DXF per "on click" and store on HDD, and later we...
Hi Guys
Here's an updated code:
Sub CATMain()
'Retrive the active document
Dim Doc As Document
Set Doc = CATIA.ActiveDocument
'Test the document's type, if it is not a drawing document the macro stops
If TypeName(Doc) = "DrawingDocument" Then
Dim DocDocument As DrawingDocument
Set...
Hi guys
I'm newbie in CATIA Automation but I try to create some script/ macro to allows me to Export files from Active Window. I found some script for Export PDF/ DXF but this is not working as desired. Macro should let user choose directory where files should be exported (from Browse For...