i have an xml file name as saved.xml <?xml version="1.0"?> <doc> <Employee> <keyName>amol </keyName> <Keyvalue>223 </Keyvalue> </Employee> </doc> whwn i run my application and enter keyname=manish and keyvalue=200 through textboxex want following insetion in my xml file <?xml version="1.0"?> <doc> <Employee> <keyName>amol </keyName> <Keyvalue>223 </Keyvalue> </Employee> <Employee> <keyName>manish </keyName> <Keyvalue>22o </Keyvalue> </Employee>
</doc> my application is in vb6.0 please help me its argent
This conversation is currently closed to new comments.
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
insertion in xml file
<?xml version="1.0"?>
<doc>
<Employee>
<keyName>amol
</keyName>
<Keyvalue>223
</Keyvalue>
</Employee>
</doc>
whwn i run my application and enter keyname=manish and keyvalue=200 through textboxex want following insetion in my xml file
<?xml version="1.0"?>
<doc>
<Employee>
<keyName>amol
</keyName>
<Keyvalue>223
</Keyvalue>
</Employee>
<Employee>
<keyName>manish
</keyName>
<Keyvalue>22o
</Keyvalue>
</Employee>
</doc>
my application is in vb6.0
please help me its argent