Hello Friends,

I have a list with 40 lines which each line contains 3 data.
I want to read a specific line and get said 3 data and assign them to 3 text boxes on the form.

(LINE1)Data1,Data2,Data3
(LINE2)Data1,Data2,Data3
(LINE3)Data1,Data2,Data3
(LINE4)Data1,Data2,Data3
(LINE5)Data1,Data2,Data3
.
.
.
etc.

Case 1
Let's say. I wan to get Line4 's Data and assign them to text boxes as
Text1 = Data1, Text2 = Data2, Text3=Data3

Case2
Let's say I want to change LINE2's data in text file with text boxes value as
Data1 = Text1, Data2 = Text2, Data3 = Text3 and write it to the file.

Can someone help me ?