I have a text box designTB and a double variable totaldsgn.
I cannot create the following equation because the designTB is a string and totaldsgn is a double
designTB.Text = totaldsgn
I have tried this and it still does not work
designTB.Text = totaldsgn.tostring
Any suggestions? Is there a way to make a text box a double instead of a string?