Hi All,
I was wondering if someone might be able to help me with a problem in VB.net code? I have the following XML file:

<Applications>
<ApplicationGroup GroupID="001" GroupName="Oracle SQLNet">
<Application AppName="SQLNet" Version="9.2.0.4">
<Package Name="Oracle SQLNet 9.2.0.4 DBA" id="">
<PackageInfo>
<MarkForUninstall>1</MarkForUninstall>
</PackageInfo>
</Package>
<Package Name="Oracle SQLNet 9.2.0.4 App User Std" id="">
<PackageInfo>
<MarkForUninstall>0</MarkForUninstall>
</PackageInfo>
</Package>
</Application>
</ApplicationGroup>
</Applications>

Im trying to do 2 things through use of the XMLDocument Class and XPath, get the Name attribute from each <Package> and value of <MarkForUninstall> for each of them. Any help would be great.

Thanks,
-ETR