This is all information that you should have given us up front. ALWAYS: this is what I want, this is what I've got, this is what happens.
Anyway, the first thing you should do is to give everything a meaningful name. None of those names mean anything so it's very easy to use the wrong control.
As for the code, the first step is to get all the inputs from the TextBoxes, convert them and assign them to variables of the appropriate type. You then calculate the mean using those variables and assign that to a variable. You then calculate the variance using all the previous variables and assign that result to another variable. Calculate the stdev from the variance and assign to another variable. Once you've got all your results, then you display them in the appropriate controls.