I need to open a text file and find words. Then I want to return to the Beginning of the file and search again. How do I code this?
TIA
DougP, MCP, A+
Code:
Open "C:\BambooVBSource\code.txt" For Input As #1
Do While Not EOF(1)
line input #1, a
Loop
‘ move back to Beginning of the file
TIA
DougP, MCP, A+