DomKum
Automotive
- Nov 27, 2005
- 23

Hi All,
Is it possible to extract the list of itmes in a opened CATPart file.
Prompt the user to ask if it required to store this in txt format if option is yes else just display on the scren and exit the marco
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim sel: set sel = CATIA.ActiveDocument.Selection
sel.Search "Name=*,all"
Dim i: for i = 1 to sel.Count
MsgBox sel.Item(i).Value.Name
Next