I need to populate a listbox from a textfile that contains data from a workshop class.
The class contains the definitioin of the properties (FIELDS) of the workshop class.
The text file looks like this.
0\3\800\Programming in Java
0\3\800\Programming in Visual Basic
0\3\800\Programming in C#
0\5\1500\Advanced Java
0\5\1500\Advanced Visual Basic
0\5\1500\Advanced C#
0\5\1500\Web Application Programming
1\3\700\Intro to Networking
1\5\1900\Advanced Netwworking
1\3\600\Mobile Networking
2\5\2000\Introduction to Databases
2\4\2000\Database Administration
3\3\670\Intro to Unix/Linux
The items displayed in the listbox need to look like
Programming in Java = Days = 3, Category = Application development, Cost = $800.00
etc...
more info
Category is enumerated and is in column(0)
Days is column(1)
cost is column (2)
Title is column(3)
I'm retired but studying .net 2010 using "Advanced Visual Basic 2010" and this is one of the exersizes
and I've tried many different approaches and seem to be missing something.
All this is in VB 2010.
Any help is appreciated.