On Aug 20, 2006, at 4:40 PM, RBNUBE wrote:

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
Thanks RBNUBE

I came across the Array method and am trying to get that to work.

  Dim anArray(40) As string

  anArray=split(TextField.text,chr(13))
  EmployeeName.text=anArray(2)

Robert Poland
[EMAIL PROTECTED]



_______________________________________________
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>

Reply via email to