frustrating
Registered User.
- Local time
- Yesterday, 18:35
- Joined
- Oct 18, 2012
- Messages
- 68
Greetings:
I am working on an application that converts various formats into text files after they've been OCR'd for parsing. One thing I need to do is find something in the text file and then go to the next line and combine that line with the line i searched for. Is this possible to do?
Here's a piece of what I have going on:
Any ideas?
I am working on an application that converts various formats into text files after they've been OCR'd for parsing. One thing I need to do is find something in the text file and then go to the next line and combine that line with the line i searched for. Is this possible to do?
Here's a piece of what I have going on:
Code:
CertEnd = FreeFile
Open Text1.Value For Input As CertEnd
Do Until EOF(CertEnd)
Line Input #CertEnd, TheCert
CarrierPlace = InStr(1, TheCert, "INSURED")
If CarrierPlace > 0 Then
CarrierName = Mid(TheCert, CarrierPlace + 8, 50)
'I would then like it to go to the next line in the text file and copy that as well.
End If
Loop