Message 1 of 5
Export Properties to XML using VBA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi i'm looking for a way to export some iproperties (Custom an Standard) via VBA to an formatted xml.
the xml should look like this:
<PPSImport xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Parts>
<Part PartNo="Vault-Name">
<PartNoExt></PartNoExt>
<Description></Description>
<CADFilename></CADFilename>
<DrawingNo></DrawingNo>
<Note></Note>
<IsAutoRemoveable>0</IsAutoRemoveable>
<FavoriteBendToolList></FavoriteBendToolList>
<BendAllowanceType></BendAllowanceType>
<KFactor></KFactor>
<BasicMaterial></BasicMaterial>
<Material></Material>
<MaterialDescription></MaterialDescription>
<MaterialThickness></MaterialThickness>
<Length></Length>
<Width></Width>
<UnitOfDimension></UnitOfDimension>
<CustomerNo></CustomerNo>
<CustomerName></CustomerName>
</Part>
</Parts>
</PPSImport>
can someone help me? i don't have many experience in vba so maybe someone can give me some code snipplets?
thanks.