View Single Post
  #1 (permalink)  
Old July 4th, 2009, 05:50 PM
black2 black2 is offline
Registered User
Points: 8, Level: 1
Points: 8, Level: 1 Points: 8, Level: 1 Points: 8, Level: 1
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jul 2009
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
Thumbs down read from csv file

hi
i want to read from csv file, that file write with another program and i must read data in files in my program! i try it...

FileStream FS = newFileStream(strFileName, FileMode.Open, FileAccess.Read, FileShare.Read);
StreamReader SR = newStreamReader(FS, Encoding.Default);
string AllText = SR.ReadToEnd();

error :
used by another procsess...


plz help me
Reply With Quote