TextBox1.Text = "BLA" works fine .. But AppendText is not available .. any ideas?
using Outlook VBA
Printable View
TextBox1.Text = "BLA" works fine .. But AppendText is not available .. any ideas?
using Outlook VBA
You do it like this:
Code:TextBox1.Text = TextBox1.Text & "BLA"
Thanks