I'm struggling with reading my XML in VB and getting the data I want.
<?xml version="1.0" encoding="UTF-8"?>
<Install>
<Package>
<Name>Office2010</Name>
<Path>C:\Windows\Office</Path>
<Default>0</Default>
</Package>
<Package>
<Name>CCleaner</Name>
<Path>C:\Windows\Cleaner</Path>
<Default>0</Default>
</Package>
</Install>
I'm trying to read a whole node at a time, so I can fetch all the values of it.
package.Name
package.Path
package.Default
Is this possible? I'm struggling with this for over 2 hours now. Thank you.