> Group,
>
[quoted text clipped - 6 lines]
>
> Ronin
You'll need to convert the strings in the text boxes to numeric types before
you add the values.
Try something like this...
int a = Convert::ToInt32(textBox1->Text);
int b = Convert::ToInt32(textBox2->Text);
int c = a + b;
textBox3->Text = Convert::ToString(c);

Signature
Peter [MVP Visual Developer]
Jack of all trades, master of none.