How to read an XML File
问题 I have a VB.net program. I'm attempting to use XMLReader to read a .xml file. I want to break the XML File up to organize it into different "Sections" In this example "FormTitle" and "ButtonTitle" . I would like to grab the <Text> data from FormTitle and display it as the Form "text" and take the <Text> in "ButtonTitle" and have it display in the button text. Here is my XML File: <?xml version="1.0" encoding="utf-8"?> <!--XML Database.--> <FormTitle> <Text>Form Test</Text> </FormTitle>