Hello all, I have some VB code that I am working with that reads a text file. The code reads the text file perfectly, however, how can I tell the code to import the data on the next line?
Here is an example what I have so far:
If (UCase(Mid(strRecord, 1, 8)) = "Security") Then
strOldSecNum = Mid(strRecord, 22, 110)
How can I tell the above to move down 1 record and get that information.
Thanks in advance.
Here is an example what I have so far:
If (UCase(Mid(strRecord, 1, 8)) = "Security") Then
strOldSecNum = Mid(strRecord, 22, 110)
How can I tell the above to move down 1 record and get that information.
Thanks in advance.