Hello there,
I am currently re-writing my Word Processor I wrote in VB6 to VB.Net 2005.
I cannot get the following VB6 code to work in VB.Net, I have tried various ways.
The VB6 code is;
[code=vb]
Open App.Path & "\recdocs.r df" For Input As #1
Do Until RecNumber = 1
Input #1, RecNumber, RecTitle, RecPath
Loop
Close #1
[/code]
I hope you can help me!!
I am currently re-writing my Word Processor I wrote in VB6 to VB.Net 2005.
I cannot get the following VB6 code to work in VB.Net, I have tried various ways.
The VB6 code is;
[code=vb]
Open App.Path & "\recdocs.r df" For Input As #1
Do Until RecNumber = 1
Input #1, RecNumber, RecTitle, RecPath
Loop
Close #1
[/code]
I hope you can help me!!
Comment