how to read file...

  • Thread starter Thread starter Supra
  • Start date Start date
S

Supra

in vb6:
dim strtemp as string, intFile as integer
intFile=FreeFile
strtemp==App.Path & "\Colours.dat"
Open strTemp For Random Access read as #intFile Len = Len(GetColurs)
Get #intFile, , GetColours
Close #intFile

how will i do in vb.net I wanted to retrieve and store in listbox

regards,
supra
 
Back
Top