Beginner question:

I want to do some math during runtime and assign the result to a textbox.

I'm having TYPE problems.

For example:

double dValue1;
double dValue2;

txtMyTexBox.Text = dValue1 * dValue2 / 4.67;

Now I know you can't do this because the textbox is expecting a String. I'm just not sure how to do this correctly.

This doesn't work:

txtMyTexBox.Text = (string)(dValue1 * dValue2 / 4.67);


I'm still at the "Hello World" stage in C sharp coming from a VB6 background.

Help?

thx.