-
Readline resouce.
fsInput = New FileStream(szSrcFile, FileMode.Open,
FileAccess.Read)
srInput = New StreamReader(fsInput)
szSrcLine = srInput.ReadLine()
..........................
..........................
..........................
srInput.Close()
fsInput.Close()
Following on from yesterday's query this is in a vb.net prog
not windows or console app just plain vanilla local app to run and end in win2k. the above code doesn't end the process when run from .bat file, the .bat file keeps on running.
Anyone thre have any ideas about killing the readline resource that srInput.ReadLine() invokes?
Much appreciated
A.