I'm a new leaner with Vb.NET and trying to populate a combo box with a particular section from the INI file.
For example, my INI file contains:
[Month]
Jan
Feb
Mar
[Date]
1
2
3
I've a form with two combo boxes. I want to populate one of them with the values under Month section and other with Date section values from the specified single INI file when form loads.
I'm using VS Express 2013 for Windows and using VB.NET as the language.
Thanks in advance for any pointers.
Edit: I've checked related posts on reading/writing INI/Text files but most of them either point to using different INI/TEXT files, read all lines or set up the INI/TEXT in a desired format/structure which is not something I can do sue to requirements.
-Deepak