Hi to all:
I need to create this namespace in an .xml file:
Hi had try this but off course i need to do something more:
Any help here please?
Thanks
I need to create this namespace in an .xml file:
Code:
<AuditFile xmlns="urn:OECD:StandardAuditFile-Tax:PT_1.01_01" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
Code:
Dim Test As XElement = _
<AuditFile xmlns="urn:OECD:StandardAuditFile-Tax:PT_1.01_01" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
</AuditFile>
Test.Save(TestFile & ".xml")
Thanks