5
Answers

Convert Flat Text file into XML

Photo of aryaonmesh

aryaonmesh

20y
4k
1
How to convert a inbound Flat Text file into xml using vb.net my text file .txt file AK^ALASKA^0.0000000.0000001994010102 DC^DISTRICT OF COLUMBIA^0.0575000.0575001994100111 into XML like AK ALASKA 0.0000000.0000001994010102 DC DISTRICT OF COLUMBIA 0.0575000.0575001994100111 Help greatly appreciated Thanks!!!

Answers (5)

0
Photo of Administrator
Admin 2.3k 1.3m 22y
MSComctlLib.ListItem loItem; ListView1.ListItems.Add( , "prussell", "Paul Russell"); ListView1.ListItems.Add( , "dburton", "Dexter Burton"); ListView1.ListItems.Add( , "jthornton", "James Thornton"); loItem = ListView1.ListItems["dburton"]; if(!loItem == null) { debug.print("Found Dexter Burton"); } This is the basic syntax you need to use, I'm not sure if it's all correct as I develop web and not windows interfaces. Good Luck