Results 1 to 3 of 3

Thread: [RESOLVED] short one: what happend to TextBox1.AppendText

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2008
    Posts
    267

    Resolved [RESOLVED] short one: what happend to TextBox1.AppendText

    TextBox1.Text = "BLA" works fine .. But AppendText is not available .. any ideas?

    using Outlook VBA

  2. #2
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: short one: what happend to TextBox1.AppendText

    You do it like this:
    Code:
    TextBox1.Text = TextBox1.Text & "BLA"

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2008
    Posts
    267

    Re: short one: what happend to TextBox1.AppendText

    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