I'm not sure you can grab the paragraph like that. I would think you should be, but if not, or you can't figure it out, you should be able to do the following...
Dim theText as String Dim textStart, textEnd as Integer textStart = EditField1.StyledText.Paragraph(1).StartPos textEnd = EditField1.StyledText.Paragraph(1).Length theText = Mid(EditField1.Text, textStart, textEnd) EditField2.Text = theText HTH _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
