Hi,
I use an ini file for configurations such as database connect values and GUI label text values. I wanted to use an XML file instead. For example:
<GUI Text>
<Language name="English">
<Form name="LogonForm">
<Title>?</Title>
<UID_lbl>?</UID_lbl>
<PWD_lbl>?<PWD_lbl>
<OK_Button>?</OK_Button>
<Cancel_Button>?</Cancel_Button>
</Form>
<Form name="MainScreen">
<Title></Title>
<Checkbox1>?</Checkbox1>
<Checkbox2>?</Checkbox2>
<Checkbox3>?</Checkbox3>
<Checkbox4>?</Checkbox4>
<OK_Button>?</OK_Button>
</Form>
</Language>
</GUI Text>
I have code to read an ini file in VB.Net, but are there any classes or code out there to read the xml file above?
Thanks in advance.
I use an ini file for configurations such as database connect values and GUI label text values. I wanted to use an XML file instead. For example:
<GUI Text>
<Language name="English">
<Form name="LogonForm">
<Title>?</Title>
<UID_lbl>?</UID_lbl>
<PWD_lbl>?<PWD_lbl>
<OK_Button>?</OK_Button>
<Cancel_Button>?</Cancel_Button>
</Form>
<Form name="MainScreen">
<Title></Title>
<Checkbox1>?</Checkbox1>
<Checkbox2>?</Checkbox2>
<Checkbox3>?</Checkbox3>
<Checkbox4>?</Checkbox4>
<OK_Button>?</OK_Button>
</Form>
</Language>
</GUI Text>
I have code to read an ini file in VB.Net, but are there any classes or code out there to read the xml file above?
Thanks in advance.