Hi guys,
I am currently working on a project in where when a Coordinators ID is selected from a combo box, I need to strip an XML file and place the subject code and name in a list box. ("code" - "Name" - "Department number").
I am not overly experienced with Visual Basic so any direction as to how to do this would be really helpful.

The xml file is written as follows. The main problem I am having is the fact the coordinatorsID is after the subect code, I have never dealt with this before.

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<start xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<subject>
		<SubjCode>AV597</SubjCode>
		<SubjectName>VEHICLE AERODYNAMICS</SubjectName>
		<DeptNum>116</DeptNum>
		<CoordinatorID>C705</CoordinatorID>
	</subject>
	<subject>
		<SubjCode>AA001</SubjCode>
		<SubjectName>VEHICLE DYNAMICS</SubjectName>
		<DeptNum>116</DeptNum>
		<CoordinatorID>C705</CoordinatorID>
Thanks in advance!
Rob