In a program I am migrating from vb6 to VB.net, there are three Line Input# statements, all the same:
Line Input #9, dummy
Line Input #9, dummy
Line Input #9, dummy
Will this just overwrite the variable each time, or do something stupid like append the input to dummy each time?
My second question, what's the difference between Input# and Line Input#? I had been using:
foo = bar.readline
for Input #.. and now I'm afraid that I've done it all wrong and should have used:
foo = bar.Read
or something
All help greatly appreciated
Thanks guys!
Nick