Hi,
Im new to C# and need help with my program that im writing i need to let it read an XML in the first window and when i press add program a second window opens (both windows i have) i want it to write the XML so something like this (as you click on add) would come out.
<?xml version="1.0" encoding="utf-8"?>
<prog>
<id=1>
<name>Dreamweaver</name>
<path>C:\Program Files\Adobe\Adobe Dreamweaver CS4\Dreamweaver.exe</path>
</id>
<id=2>
<name>Photoshop</name>
<path>C:\Program Files\Adobe\Adobe Photoshop CS4\Photoshop.exe</path>
</id>
</prog>
then when the XML is adjusted that a button is made with on click it would do
Process.Start(@"D:\Program Files\Adobe\Adobe Dreamweaver CS4\Dreamweaver.exe");
If someone could help me on how to do this cause i already looked at the read & write tutorials on the web but cant get a real good grip on how to do it.
thx in advance