I'm fairly new to coding VB 2008
I need help converting a text document with a type of code in it. One line looks like this: 52.000000, 400.000000, 1.3107711, 0
I need to convert that to an xml file that looks like this:
- <CuePoint>
<Time>11619</Time>
<Type>event</Type>
<Name>Marker 01</Name>
- <Parameters>
- <Parameter>
<Name />
<Value>0</Value>
</Parameter>
</Parameters>
</CuePoint>
The time in the text is 1.310771
value in text is 52.000000
I have hundreds of lines like that that need converting so I need something that will make the process automated.
I looked at other posts and was unable to convert the the code to what I needed it to do because of my lack of coding knowledge. Please help.