Hi!
I don't know what program you are using, but in Access a vbNewLine character is added to the string in a multiline text box. So all you need to do is:
strWork = MyTextBox.Value
strLine = Left(strWork, InStr(strWork, vbNewLine) - 1)
strWork = Mid(strWork, InStr(strWork, vbNewLine) + 2)
You can put this into a loop along with the code to do what you want with each line until you find no more vbNewLine characters.
hth
Jeff Bridgham
bridgham@purdue.edu