Consider:
namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent();
You start a thread which runs the static method SumData. However, SumData calls SetTextboxText which isn't static. Thus you need an instance of your form to call SetTextboxText.
SumData
SetTextboxText