S
Supra
how do i parse 6 digits or hex (limited to 6) and stored in listbox . i
got one rows
this what i got from Colours.dat...
FF000000FFFFFFFFFF00FF000000FFFFFF0000FFFFFFFF00FF00FFFFFF0000FFFF0000FF0000FFFFFFFF00FFFFFF0000FFFF00
FFFFFF
the file i loaded...
Dim thefile As String = OpenFileDialog1.FileName
Dim fs As FileStream = New FileStream(thefile, FileMode.Open)
Dim sr As StreamReader = New StreamReader(fs)
lstColour.Items.Add(sr.ReadToEnd)
sr.Close()
fs.Close()
does ne 1 know i can get row by row?
regards,
supra
got one rows
this what i got from Colours.dat...
FF000000FFFFFFFFFF00FF000000FFFFFF0000FFFFFFFF00FF00FFFFFF0000FFFF0000FF0000FFFFFFFF00FFFFFF0000FFFF00
FFFFFF
the file i loaded...
Dim thefile As String = OpenFileDialog1.FileName
Dim fs As FileStream = New FileStream(thefile, FileMode.Open)
Dim sr As StreamReader = New StreamReader(fs)
lstColour.Items.Add(sr.ReadToEnd)
sr.Close()
fs.Close()
does ne 1 know i can get row by row?
regards,
supra