Hi,
I have a problem.
I need to read some data from a text file and need to put it into XML file using VB6.
I have the follwoing input from the text file:
Suite id="ADD"
description="Add Validation Suite"
TestCase id="ATC_V_Add001"
and so on..........
and I want the following format in XML file. I have to update the XML file with the following info:
<?xml-stylesheet type="text/xsl" href="TestSuite.xsl"?>
<LLD>
<Cycle>
<Suite id="ADD" description="Add Validation Suite">
<TestCase id="ATC_V_Add001" description="Verify the Rulecode ADD001 with Address Overlap in the same Zone or City exception">
<LinkPVID>54221487</LinkPVID>
<Results>Exception ADD001 is generated see details in Exception info section</Results>
<StepTable id="StartUpApplication" description="To launch the application" />
</TestCase>
</Suite>
</Cycle>
</LLD>