Hej I am new here and also new programming in VB, I am making a form in VB and I want that some data that I have in a xml file to be loaded into that form.
my XML file looks like this:
<Ship>
<Identification>
<OrderNo>2</OrderNo>
<Yard>T</Yard>
<HullNo>NB</HullNo>
</Identification>
<CargoTypes>
<Cargo>
<General>
<Name>Acetic acid</Name>
<VapourAirDensity>1.39894442688</VapourAirDensity>
</General>
<NonVecs>
<MaxLoadingRate>350 </MaxLoadingRate>
<MaxDischargeRate>740</MaxDischargeRate>
</NonVecs>
<Vecs>
<MaxLoadingRate>365</MaxLoadingRate>
</Vecs>
</Cargo>
for each name I have a specific density and maxloading rates... the name will be in a combobox, and when i select that name I will retrieve the data related to that name.
This data will be showed in labels in my form application.
I need help how to do this, how to load this information into VB?
thanks a lot
sofia:-/