Results 1 to 3 of 3

Thread: [RESOLVED] send text

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Dec 2004
    Posts
    168

    Resolved [RESOLVED] send text

    How would i make vb send text one line at a time?

    So if Text1 was something like
    HI
    Text1
    YAY

    It would send HI then Text1 then YAY

  2. #2
    PowerPoster kfcSmitty's Avatar
    Join Date
    May 2005
    Posts
    2,248

    Re: send text

    VB Code:
    1. Dim textsplit () as string
    2. textsplit = split (text1.text,vbCrLf)
    3.  
    4. for i = 1 to ubound(textsplit)
    5. msgbox (textsplit(i))
    6. next

    that what you want?

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Dec 2004
    Posts
    168

    Re: send text

    yeah thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width