it stucks on readLine. i mean, the processor arrives to this line (line= sr.readline()) and just stop. even if i add another line to while:
while(!sr.endOffile)
{
line= sr.readline(); <------------it stops here------
messageBox.show("Just string"); the processor do not arrive to this line
}
the processor stops working even if the Stream is not endOfFile. Why?! P.S i changed !sr.endofFile to line!=null it is still not working...