hmm.. i nvr used that line() property before, ill chk it out, thanks. however, since the site was down last nite, i had nothing to do but test my elaborate theory. i got it to work. i had to save each line from the txtbox (up to 4 lines) to 4 different textboxes (singlelined). here is how i did it: For i = 1 To textLarge.TextLength If Mid(textLarge.Text, i, 1) = Chr(13) Then labelNum += 1 i += 1 Else If labelNum = 1 Then text1.Text &= Mid(textLarge.Text, i, 1) End If If labelNum = 2 Then text2.Text &= Mid(textLarge.Text, i, 1) End If If labelNum = 3 Then text3.Text &= Mid(textLarge.Text, i, 1) End If If labelNum = 4 Then text4.Text &= Mid(textLarge.Text, i, 1) End If End If Next i could have made it more efficient by using an array of txtboxes instead of 4, so i could reuse the code, but, hey... ------------------------ Jordan. III