Quantcast
Channel: VB 2010 Progress Bar.
Viewing all articles
Browse latest Browse all 41

VB 2010 Progress Bar.

$
0
0

Okay, if nobody will help me with that.  I have another question.  I have this xml file and I want to get the information that is in it.

The Bold text is the information that I want to get.

<?xml version="1.0" encoding="UTF-8"?>
<Mediainfo version="0.7.34">
<File>
<track type="General">
<Complete_name>C:\Users\Metroidn1f\Downloads\Movies\Date Night\metis-datenight-720p.mkv</Complete_name>
<Format>Matroska</Format>
<File_size>4.36 GiB</File_size>
<Duration>1h 41mn</Duration>
<Overall_bit_rate>6 150 Kbps</Overall_bit_rate>
<Encoded_date>UTC 2010-07-03 01:38:03</Encoded_date>
<Writing_application>mkvmerge v3.2.0 ('Beginnings') built on Feb 12 2010 16:46:17</Writing_application>
<Writing_library>libebml v0.7.9 + libmatroska v0.8.1</Writing_library>
</track>

<track type="Video">
<ID>1</ID>

I found this code that was able to help me a bit.

 Dim root As XElement = XElement.Load("C:\Users\Metroidn1f\Desktop\Completed Metroidn1f Encoders\Tools\MediaInfo\Test.xml")
        Dim firststation As XElement = root...<MediaInfo>.FirstOrDefault
        MsgBox(firststation.<ID>.Value)

But I can't figure out how to go to the next tags in order to get to the one that I want.  Can anyone help me out here please?


Viewing all articles
Browse latest Browse all 41

Trending Articles